44 lines
821 B
TOML
44 lines
821 B
TOML
[package]
|
|
name = "fcry"
|
|
version = "0.11.0"
|
|
edition = "2024"
|
|
license = "MIT-0"
|
|
|
|
[dependencies]
|
|
argon2 = "0.5"
|
|
blake3 = "1"
|
|
chacha20poly1305 = "0.10"
|
|
clap = { version = "4", features = ["derive"] }
|
|
crossbeam-channel = "0.5"
|
|
getrandom = { version = "0.4" }
|
|
protected-secrets = { package = "secrets", version = "1.3" }
|
|
same-file = "1"
|
|
unicode-normalization = "0.1"
|
|
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 = true
|
|
panic = "unwind"
|
|
codegen-units = 1
|