24 lines
798 B
TOML
24 lines
798 B
TOML
[package]
|
|
name = "nym-sphinx-framing"
|
|
version.workspace = true
|
|
description = "Sphinx packet framing for the Nym mixnet"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
bytes = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
nym-sphinx-types = { path = "../types", features = ["sphinx", "outfox"] }
|
|
nym-sphinx-params = { path = "../params", features = ["sphinx", "outfox"] }
|
|
nym-sphinx-forwarding = { path = "../forwarding" }
|
|
nym-sphinx-addressing = { path = "../addressing" }
|
|
nym-sphinx-acknowledgements = { path = "../acknowledgements" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|