36 lines
859 B
TOML
36 lines
859 B
TOML
[package]
|
|
name = "yama_midlevel_crypto"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
ciborium = "0.2.0"
|
|
blake3 = "1.3.3"
|
|
|
|
# Unauthenticated symmetric seekable stream constructions
|
|
chacha20 = "0.9.1"
|
|
|
|
x25519-dalek = { version = "2.0.0-rc.2", features = ["serde", "static_secrets"] }
|
|
poly1305 = "0.8.0"
|
|
ed25519-dalek = { version = "2.0.0-rc.2", features = ["serde", "rand_core"] }
|
|
|
|
# Hybrid quantum-resistant asymmetric 'key encapsulation' mechanisms
|
|
pqc_kyber = { version = "0.5.0", features = ["kyber1024"] }
|
|
#alkali = "0.3.0"
|
|
|
|
rand = "0.8.5"
|
|
|
|
|
|
eyre = "0.6.8"
|
|
|
|
# 0.12.3+zstd.1.5.2
|
|
zstd = "0.12.3"
|
|
|
|
hex = "0.4.3"
|
|
|
|
argon2 = { version = "0.4.1", default-features = false, features = ["alloc", "std"] }
|
|
|