a4638b8d2f
* use x25519 noise key for ktt instead of deriving one from ed25519 * removed client's IpAddr from RegistrationClient constructor * Adjusted the gateway probe to inject correct lp data * remove redundant argument from nym-lp-client * consistent naming for HashFunction variants * use workspace dep import for nym-kkt-ciphersuite * struct renaming
41 lines
1.0 KiB
TOML
41 lines
1.0 KiB
TOML
[package]
|
|
name = "nym-kkt"
|
|
version = "0.1.0"
|
|
authors = ["Georgio Nicolas <georgio@nymtech.net>"]
|
|
edition = { workspace = true }
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
blake3 = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
num_enum = { workspace = true }
|
|
strum = { workspace = true }
|
|
|
|
|
|
# internal
|
|
nym-crypto = { path = "../crypto", features = ["asymmetric", "serde"] }
|
|
nym-kkt-ciphersuite = { workspace = true, features = ["digests"] }
|
|
|
|
libcrux-kem = { git = "https://github.com/cryspen/libcrux" }
|
|
libcrux-ecdh = { git = "https://github.com/cryspen/libcrux", features = ["codec"] }
|
|
libcrux-chacha20poly1305 = { git = "https://github.com/cryspen/libcrux" }
|
|
|
|
rand = "0.9.2"
|
|
zeroize = { workspace = true, features = ["zeroize_derive"] }
|
|
classic-mceliece-rust = { git = "https://github.com/georgio/classic-mceliece-rust", features = ["mceliece460896f", "zeroize"] }
|
|
|
|
|
|
[dev-dependencies]
|
|
rand_chacha = "0.9.0"
|
|
anyhow = { workspace = true }
|
|
criterion = { workspace = true }
|
|
|
|
|
|
[[bench]]
|
|
name = "benches"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true
|