/ crypto / aead / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fedimint-aead"
 3  version = "0.4.0-alpha"
 4  authors = ["The Fedimint Developers"]
 5  edition = "2021"
 6  description = "aead utilities on top of ring"
 7  license = "MIT"
 8  readme = "../../README.md"
 9  repository = "https://github.com/fedimint/fedimint"
10  
11  [package.metadata.docs.rs]
12  rustc-args = ["--cfg", "tokio_unstable"]
13  
14  [lib]
15  name = "fedimint_aead"
16  path = "src/lib.rs"
17  
18  [dependencies]
19  anyhow = { workspace = true }
20  argon2 = { version = "0.5.3", features = ["password-hash", "alloc"] }
21  ring = "0.17.8"
22  hex = { workspace = true }
23  rand = { workspace = true }