f4dd9a915d
* Add Apache 2.0 to bunch of common crates * Allow some basic licenses * Add more licenses
32 lines
903 B
TOML
32 lines
903 B
TOML
[package]
|
|
name = "nym-node-tester-utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = { workspace = true }
|
|
rand = "0.7.3"
|
|
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros"]}
|
|
|
|
nym-crypto = { path = "../crypto", features = ["asymmetric"] }
|
|
nym-task = { path = "../task" }
|
|
nym-topology = { path = "../topology" }
|
|
nym-sphinx-params = { path = "../nymsphinx/params" }
|
|
# TODO: do we need the whole nymsphinx?
|
|
nym-sphinx = { path = "../nymsphinx" }
|
|
|
|
## non-wasm-only dependencies
|
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.log]
|
|
workspace = true
|
|
|
|
## wasm-only dependencies
|
|
[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-utils]
|
|
path = "../wasm/utils"
|