-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (56 loc) · 1.36 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "git-simple-encrypt"
authors = ["lxl66566 <[email protected]>"]
description = "Encrypt/decrypt files in git repo using one password"
homepage = "https://github.com/lxl66566/git-simple-encrypt"
repository = "https://github.com/lxl66566/git-simple-encrypt"
license = "MIT"
version = "1.3.1"
edition = "2021"
readme = "./README.md"
categories = ["cryptography"]
keywords = ["git", "encryption"]
[dependencies]
aes-gcm-siv = "0.11.1"
anyhow = "1.0.92"
assert2 = "0.3.15"
clap = { version = "4.5.20", features = ["derive"] }
colored = "2.1.0"
config-file2 = "0.3.2"
const-str = "0.5.7"
copy-metadata = "0.1.0"
die-exit = { version = "0.5.0", features = ["red"] }
enum-tools = "0.5.3"
env_logger = "0.11.5"
glob = "0.3.1"
log = "0.4.22"
num_cpus = "1.16.0"
pathdiff = "0.2.2"
regex = "1.11.0"
same-file = "1.0.6"
serde = { version = "1.0.214", features = ["derive"] }
sha3 = "0.10.8"
tap = "1.0.1"
tokio = { version = "1.41.0", features = [
"macros",
"rt",
"rt-multi-thread",
"fs",
] }
toml = "0.8.19"
zstd = "0.13.2"
[target.'cfg(target_arch = "aarch64")'.dependencies]
libz-sys = { version = "1.1.20", features = ["static"] }
[dev-dependencies]
rand = { version = "0.8.5", features = ["small_rng"] }
tempfile = "3.13.0"
[[bin]]
name = "git-se"
path = "src/main.rs"
[lib]
path = "src/lib.rs"
[profile.release]
strip = true
lto = true
panic = "abort"
opt-level = "z"