libchat/core/crypto/Cargo.toml

17 lines
440 B
TOML
Raw Permalink Normal View History

[package]
name = "crypto"
version = "0.1.0"
edition = "2024"
[dependencies]
# External dependencies (sorted)
ed25519-dalek = { version = "2.2.0", features = ["rand_core"] }
generic-array = "1.3.5"
hkdf = "0.12"
rand_core = { version = "0.6", features = ["getrandom"] }
sha2 = "0.10"
thiserror = "2"
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
xeddsa = "1.0.2"
zeroize = { version = "1.8.2", features = ["derive"] }