e548d6f1f8
* cargo: add log as a workspace dependency * cargo: add authors to top-level workspace * cargo: add a few more entried to workspace package
17 lines
480 B
TOML
17 lines
480 B
TOML
[package]
|
|
name = "nymsphinx-chunking"
|
|
version = "0.1.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
|
|
# 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"
|
|
|
|
nymsphinx-addressing = { path = "../addressing" }
|
|
nymsphinx-params = { path = "../params" }
|
|
nymsphinx-types = { path = "../types" }
|