19 lines
750 B
TOML
19 lines
750 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", features = ["sphinx"] } # we need to be able to refer to some types defined inside sphinx crate
|
|
serde = { workspace = true } # implementing serialization/deserialization for some types, like `Recipient`
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
rand = { workspace = true }
|
|
nym-crypto = { path = "../../crypto", features = ["rand"] }
|