Zion Boggan
repos/Oversight/oversight-rust/oversight-crypto/Cargo.toml
zionboggan.com ↗
22 lines · toml
History for this file →
1
[package]
2
name = "oversight-crypto"
3
version.workspace = true
4
edition.workspace = true
5
rust-version.workspace = true
6
license.workspace = true
7
description = "Cryptographic primitives for Oversight: X25519, Ed25519, XChaCha20-Poly1305, HKDF, hybrid PQ hooks"
8
 
9
[dependencies]
10
x25519-dalek.workspace = true
11
ed25519-dalek.workspace = true
12
p256.workspace = true
13
chacha20poly1305.workspace = true
14
hkdf.workspace = true
15
sha2.workspace = true
16
rand_core = { workspace = true, features = ["getrandom"] }
17
ml-kem.workspace = true
18
serde = { workspace = true }
19
hex.workspace = true
20
zeroize.workspace = true
21
thiserror.workspace = true
22
serde_json.workspace = true