29 lines
765 B
TOML
29 lines
765 B
TOML
[package]
|
|
name = "notsecrets"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
notcore = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
rpassword = { workspace = true }
|
|
dirs = { workspace = true }
|
|
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
|
ed25519-dalek = "2"
|
|
rsa = { version = "0.9", features = ["sha2"] }
|
|
sha2 = "0.10"
|
|
hkdf = "0.12"
|
|
chacha20poly1305 = "0.10"
|
|
scrypt = "0.11"
|
|
bech32 = "0.11"
|
|
base64 = "0.22"
|
|
hmac = "0.12"
|
|
rand = "0.8"
|
|
zeroize = "1"
|
|
curve25519-dalek = "4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|