24 lines
619 B
TOML
24 lines
619 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
|
|
|
|
[dependencies]
|
|
sha2 = "0.10.6"
|
|
scrypt = { version = "0.11.0", default-features = false, features = ["std"] }
|
|
pbkdf2 = "0.12.1"
|
|
thiserror = "1.0.40"
|
|
entity = { version = "0.1.0", path = "../entity" }
|
|
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
|
rand = { version = "0.8.5", default-features = false, features = [
|
|
"std_rng",
|
|
"std",
|
|
] }
|
|
sea-orm = "0.11.3"
|
|
bitflags = "2.3.1"
|
|
arrayvec = "0.7.2"
|
|
subtle = "2.5.0"
|
|
once_cell = "1.18.0"
|