/ fedimint-wasm-tests / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fedimint-wasm-tests"
 3  version = {workspace = true}
 4  edition = "2021"
 5  license = "MIT"
 6  description = "Wasm tests for the fedimint."
 7  publish = false
 8  
 9  [lib]
10  crate-type = [ "rlib", "cdylib" ]
11  name = "fedimint_wasm_tests"
12  path = "src/lib.rs"
13  
14  [dependencies]
15  anyhow = { workspace = true }
16  futures = { workspace = true }
17  ring = { version = "0.17.8", features = ["wasm32_unknown_unknown_js"] }
18  fedimint-client = { path = "../fedimint-client" }
19  fedimint-core = { workspace = true }
20  fedimint-api-client = { workspace = true }
21  fedimint-mint-client = { path = "../modules/fedimint-mint-client" }
22  fedimint-mint-common = { path = "../modules/fedimint-mint-common" }
23  fedimint-ln-common = { path = "../modules/fedimint-ln-common" }
24  fedimint-ln-client = { path = "../modules/fedimint-ln-client" }
25  fedimint-wallet-client = { path = "../modules/fedimint-wallet-client" }
26  js-sys = "0.3.69"
27  wasm-bindgen = "=0.2.92" # must match the nix provided wasm-bindgen-cli version
28  wasm-bindgen-futures = "0.4.42"
29  wasm-bindgen-test = "0.3.42"
30  gloo-net = "0.5.0"
31  rand = { workspace = true }