18 lines
441 B
TOML
18 lines
441 B
TOML
[package]
|
|
name = "wasm-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3.40"
|
|
client-api-test = { path = "../client-api-test" }
|
|
client-api = { path = "../client-api" }
|
|
tokio = { version = "1", features = ["sync", "macros"] }
|
|
wasm-bindgen-futures = "0.4"
|