rustcryptfs/rustcryptfs-lib/Cargo.toml

20 lines
453 B
TOML
Raw Normal View History

[package]
name = "rustcryptfs-lib"
version = "0.1.0"
edition = "2021"
2022-10-09 13:49:47 +00:00
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.13"
scrypt = "0.8"
serde = { version = "1.0", features = ["derive"] }
aes= "0.8"
aes-gcm = "0.9"
hkdf = { version = "0.12", features = ["std"] }
sha2 = "0.10"
cipher = "0.4"
eme-mode = "0.3"
thiserror = "1.0"
2022-08-11 13:41:42 +00:00
serde_json = "1.0"