Files
nym/common/nymsphinx/acknowledgements/Cargo.toml
T
Jon Häggblad d0b380cd99 Remove serde_crate named import (#4832)
* Run cargo autoinherit following last weeks dependabot updates

* Remove serde_crate named import
2024-09-02 15:51:56 +02:00

27 lines
927 B
TOML

[package]
name = "nym-sphinx-acknowledgements"
version = "0.1.0"
description = "Sphinx packet ack messages"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[dependencies]
rand = { workspace = true }
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] }
generic-array = { workspace = true, optional = true, features = ["serde"] }
thiserror = { workspace = true }
zeroize = { workspace = true }
nym-crypto = { path = "../../crypto", features = ["symmetric", "rand"] }
nym-pemstore = { path = "../../pemstore" }
nym-sphinx-addressing = { path = "../addressing" }
nym-sphinx-params = { path = "../params" }
nym-sphinx-routing = { path = "../routing" }
nym-sphinx-types = { path = "../types", features = ["sphinx"] }
nym-topology = { path = "../../topology" }
[features]
serde = ["dep:serde", "generic-array"]