827c13b69e
dont build netstack in CI additional rust 2024 fixes fixes removed temp.rs first round of cleanup removed duplicated NS types moved gateway probe to the monorepo
36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[package]
|
|
name = "nym-node-tester-wasm"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
version = "1.3.0-rc.0"
|
|
edition = "2021"
|
|
keywords = ["nym", "sphinx", "webassembly", "privacy", "tester"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/nymtech/nym"
|
|
rust-version = "1.85"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
futures = { workspace = true }
|
|
js-sys = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde-wasm-bindgen = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
wasm-bindgen = { workspace = true }
|
|
wasm-bindgen-futures = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tsify = { workspace = true, features = ["js"] }
|
|
|
|
wasmtimer = { workspace = true }
|
|
|
|
nym-node-tester-utils = { path = "../../common/node-tester-utils" }
|
|
wasm-client-core = { path = "../../common/wasm/client-core" }
|
|
wasm-utils = { path = "../../common/wasm/utils" }
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|