37 lines
731 B
TOML
37 lines
731 B
TOML
[package]
|
|
name = "fcry"
|
|
version = "0.10.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
argon2 = "0.5"
|
|
chacha20poly1305 = "0.10"
|
|
clap = { version = "4", features = ["derive"] }
|
|
crossbeam-channel = "0.5"
|
|
getrandom = { version = "0.4" }
|
|
protected-secrets = { package = "secrets", version = "1.3" }
|
|
zeroize = { version = "1", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2"
|
|
tempfile = "3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
rlimit = "0.11"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { version = "0.61", features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Console",
|
|
] }
|
|
|
|
[profile.release]
|
|
debug = false
|
|
strip = true
|
|
lto = false
|
|
panic = "unwind"
|
|
codegen-units = 1
|