Files
nym/common/nymsphinx/addressing/Cargo.toml
T
2023-02-22 15:19:26 +01:00

18 lines
625 B
TOML

[package]
name = "nym-sphinx-addressing"
version = "0.1.0"
description = "Nym mixnet addressing"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[dependencies]
nym-crypto = { path = "../../crypto", features = ["asymmetric"] } # all addresses are expressed in terms on their crypto keys
nym-sphinx-types = { path = "../types" } # we need to be able to refer to some types defined inside sphinx crate
serde = "1.0" # implementing serialization/deserialization for some types, like `Recipient`
thiserror = "1.0.37"
[dev-dependencies]
rand = "0.7"