Files
libchat/core/crypto/Cargo.toml
T

17 lines
441 B
TOML
Raw Normal View History

[package]
name = "crypto"
version = "0.1.0"
edition = "2024"
[dependencies]
2026-05-20 13:18:25 -07:00
# External dependencies (sorted)
2026-04-27 13:35:20 -07:00
ed25519-dalek = { version = "2.2.0", features = ["rand_core"] }
generic-array = "1.3.5"
2026-05-20 13:18:25 -07:00
hkdf = "0.12"
rand_core = { version = "0.6", features = ["getrandom"] }
sha2 = "0.10"
thiserror = "2"
2026-05-20 13:18:25 -07:00
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
xeddsa = "=1.0.2"
2026-05-20 13:18:25 -07:00
zeroize = { version = "1.8.2", features = ["derive"] }