d97be2d8ef
* bugfix: Recipient deserialisation for deserialisers missing bytes specialisation for example toml or json will just default to visit_seq ignoring bytes related optimisations * clippy
21 lines
876 B
TOML
21 lines
876 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", "sphinx"] } # 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"] }
|
|
bincode = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] } |