44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "nym-kkt"
|
|
description = "Key transport protocol for the Nym network"
|
|
version = "0.1.0"
|
|
authors = ["Georgio Nicolas <georgio@nymtech.net>"]
|
|
edition = { workspace = true }
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = true
|
|
|
|
[dependencies]
|
|
thiserror = { workspace = true }
|
|
num_enum = { workspace = true }
|
|
strum = { workspace = true }
|
|
|
|
# internal
|
|
nym-crypto = { workspace = true, features = ["hashing"] }
|
|
nym-kkt-ciphersuite = { workspace = true, features = ["digests"] }
|
|
nym-kkt-context = { workspace = true }
|
|
nym-pemstore = { workspace = true }
|
|
|
|
libcrux-kem = { workspace = true }
|
|
libcrux-ecdh = { workspace = true, features = ["codec"] }
|
|
libcrux-chacha20poly1305 = { workspace = true }
|
|
|
|
rand09 = { workspace = true }
|
|
zeroize = { workspace = true, features = ["zeroize_derive"] }
|
|
|
|
libcrux-psq = { workspace = true, features = ["classic-mceliece"] }
|
|
libcrux-ml-kem = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
rand_chacha = "0.9.0"
|
|
anyhow = { workspace = true }
|
|
nym-test-utils = { workspace = true }
|
|
|
|
|
|
[lints]
|
|
workspace = true
|