pass_manager/cryptography/Cargo.toml
2023-11-19 14:45:46 +03:00

27 lines
611 B
TOML

[package]
name = "cryptography"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints]
workspace = true
[dependencies]
sha2 = "0.10"
scrypt = { version = "0.11", default-features = false, features = ["std"] }
pbkdf2 = "0.12"
thiserror = "1"
entity = { version = "0.1", path = "../entity" }
chacha20poly1305 = { version = "0.10", features = ["std"] }
rand = { version = "0.8", default-features = false, features = [
"std_rng",
"std",
] }
sea-orm = "0.12"
bitflags = "2"
arrayvec = "0.7"
subtle = "2"
once_cell = "1"