-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 802 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "gitveil"
version = "1.3.4"
edition = "2021"
description = "Transparent file encryption in git (git-crypt compatible)"
license = "GPL-3.0-only"
repository = "https://github.com/lucatescari/gitveil"
homepage = "https://github.com/lucatescari/gitveil"
readme = "README.md"
keywords = ["git", "encryption", "git-crypt", "gpg", "secrets"]
categories = ["command-line-utilities", "cryptography"]
exclude = ["/benchmark", "/docs", "/scripts", "/.github", "/gitveil.svg", "/CLAUDE.md"]
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
aes = "0.9"
ctr = "0.10"
cipher = "0.5"
hmac = "0.13"
sha1 = "0.11"
getrandom = "0.4"
thiserror = "2"
byteorder = "1"
zeroize = { version = "1", features = ["derive"] }
colored = "3.1.1"
[dev-dependencies]
tempfile = "3"