-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (49 loc) · 1.57 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
[package]
authors = ["lxl66566 <[email protected]>"]
categories = ["cryptography"]
description = "Encrypt/decrypt files in git repo using one password"
edition = "2021"
homepage = "https://github.com/lxl66566/git-simple-encrypt"
keywords = ["git", "encryption"]
license = "MIT"
name = "git-simple-encrypt"
readme = "./README.md"
repository = "https://github.com/lxl66566/git-simple-encrypt"
version = "1.4.0"
[dependencies]
aes-gcm-siv = "0.11.1"
anyhow = "1.0.93"
assert2 = "0.3.15"
clap = { version = "4.5.21", features = ["derive"] }
colored = "2.1.0"
config-file2 = "0.4.0"
const-str = "0.5.7"
copy-metadata = "0.1.0"
die-exit = { version = "0.5.0", features = ["red"] }
enum-tools = "0.5.3"
glob = "0.3.1"
log = "0.4.22"
num_cpus = "1.16.0"
path-absolutize = "3.1.1"
pathdiff = "0.2.3"
pretty_env_logger = "0.5.0"
serde = { version = "1.0.215", features = ["derive"] }
sha3 = "0.10.8"
tap = "1.0.1"
tokio = { version = "1.41.1", features = ["macros", "rt", "rt-multi-thread", "fs"] }
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.14.0"
[[bin]]
name = "git-se"
path = "src/main.rs"
[lib]
path = "src/lib.rs"
[profile.release]
lto = true
opt-level = "z"
panic = "abort"
strip = true