Files
nym/common/nymsphinx/params/Cargo.toml
T
Jędrzej Stuczyński 6e5d0dac1b feature: allow nym-nodes to understand future version of sphinx packets (#5496)
* use updated sphinx crate

* updated outfox usage of keygen in tests

* use x25519 in outfox

* remove redundant constructor

* adjusted key convertion traits
2025-02-21 11:06:07 +00:00

21 lines
580 B
TOML

[package]
name = "nym-sphinx-params"
version = "0.1.0"
description = "Sphinx packet parameters for the Nym mixnet"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[dependencies]
thiserror = { workspace = true }
serde = { workspace = true, features = ["derive"] }
nym-crypto = { path = "../../crypto", features = ["hashing", "stream_cipher", "aead"] }
nym-sphinx-types = { path = "../types" }
[features]
default = ["sphinx"]
sphinx = ["nym-sphinx-types/outfox"]
outfox = ["nym-sphinx-types/outfox"]