0f7dbb94a8
* version fix * try to publish core crates first * bump version ci * fix to yaml * Slight modifications to ordering, remove core-crates and rely on ordering as test + sed tweak * crates release: bump version to 1.21.0 (#6744) Co-authored-by: Nym bot <nym-bot@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me> * Remove unnecessary verification step becase of dryrun (doubled) * Revert some changes to develop * Add preflight to its own workflow * Clippy * Update crate publishing file * Clippy --------- Co-authored-by: benedettadavico <benedettadavico@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Nym bot <nym-bot@users.noreply.github.com>
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 = "1.21.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
|