-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.58 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (41 loc) · 1.58 KB
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
[package]
name = "envseal"
version = "5.1.0"
edition = "2021"
[dependencies]
# CLI and parsing
clap = { version = "4", default-features = false, features = ["derive", "std", "help", "usage", "error-context"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmp-serde = "1.3.1"
dotenvy = "0.15.7"
dialoguer = { version = "0.12.0", default-features = false, features = ["password"] }
rpassword = "7"
directories = "6.0.0"
anyhow = "1"
base64 = "0.22.1"
fs2 = "0.4.3"
zstd = "0.13.3"
keyring = "4.1.6"
# Cryptography and security
argon2 = { version = "0.5", default-features = false, features = ["alloc", "password-hash"] }
aes-gcm = { version = "0.11.0", default-features = false, features = ["aes", "alloc", "getrandom"] }
aead = { version = "0.6.1", default-features = false, features = ["alloc"] }
ed25519-dalek = { version = "3.0.0", default-features = false, features = ["alloc", "rand_core"] }
hkdf = "0.13.0"
hmac = "0.13.0"
sha2 = { version = "0.11.0", default-features = false }
zeroize = { version = "1", features = ["zeroize_derive", "serde"] }
rand = "0.8"
rand_core = "0.10.1"
tempfile = "3"
hex = "0.4.3"
[dev-dependencies]
serial_test = "3"
# Production Release Profile
[profile.release]
opt-level = 3 # Full optimizations
lto = "fat" # Aggressive Link-Time Optimization across all crates
codegen-units = 1 # Single code unit enables maximum cross-crate inlining
panic = "abort" # Eliminates unneeded unwinding landing pads and runtime tables
strip = "symbols" # Strips debug symbols directly at link time (no external tools needed)