3b891fff1c
When enabled, mix nodes skip ack extraction and forwarding entirely. The full payload (including ack portion) is returned as the message. Closes: nym-3wrr
29 lines
911 B
TOML
29 lines
911 B
TOML
[package]
|
|
name = "nym-sphinx-framing"
|
|
version = "0.1.0"
|
|
description = "Sphinx packet framing for the Nym mixnet"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
bytes = { workspace = true }
|
|
cfg-if = { 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"] }
|
|
|
|
[features]
|
|
# When enabled, mix nodes skip ack extraction and forwarding
|
|
no-mix-acks = []
|