20 lines
606 B
TOML
20 lines
606 B
TOML
[package]
|
|
name = "nym-sphinx-chunking"
|
|
version = "0.1.0"
|
|
description = "Sphinx packet chunking of underlying data packets"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
thiserror = "1.0.37"
|
|
|
|
nym-sphinx-addressing = { path = "../addressing" }
|
|
nym-sphinx-params = { path = "../params" }
|
|
nym-sphinx-types = { path = "../types" }
|