2026-01-22 06:39:09 +07:00
|
|
|
[package]
|
|
|
|
|
name = "crypto"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-05-01 12:24:47 -07:00
|
|
|
# External dependencies (sorted)
|
2026-04-27 13:35:20 -07:00
|
|
|
ed25519-dalek = { version = "2.2.0", features = ["rand_core"] }
|
2026-01-22 06:39:09 +07:00
|
|
|
generic-array = "1.3.5"
|
2026-05-01 12:24:47 -07:00
|
|
|
hkdf = "0.12"
|
|
|
|
|
rand_core = { version = "0.6", features = ["getrandom"] }
|
|
|
|
|
sha2 = "0.10"
|
2026-06-10 19:31:09 +03:00
|
|
|
thiserror = "2.0.18"
|
2026-05-01 12:24:47 -07:00
|
|
|
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
|
2026-06-10 19:31:09 +03:00
|
|
|
# Pinned: 1.1.0 switched to rand_core 0.10, incompatible with x25519-dalek's rand_core 0.6
|
|
|
|
|
xeddsa = "=1.0.2"
|
2026-05-01 12:24:47 -07:00
|
|
|
zeroize = { version = "1.8.2", features = ["derive"] }
|