-
Notifications
You must be signed in to change notification settings - Fork 97
/
Cargo.toml
30 lines (26 loc) · 1.3 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "iota-client-wasm"
version = "0.1.0"
authors = [ "IOTA Stiftung" ]
edition = "2021"
description = "WebAssembly bindings for the IOTA client library"
documentation = "https://wiki.iota.org/iota.rs/welcome"
homepage = "https://www.iota.org/"
repository = "https://github.com/iotaledger/iota.rs"
license = "Apache-2.0"
keywords = [ "iota", "tangle", "client", "wasm" ]
categories = [ "cryptography::cryptocurrencies" ]
publish = false
[lib]
crate-type = [ "cdylib" ]
[dependencies]
iota-client = { path = "../../", default-features = false, features = [ "message_interface", "tls" ] }
console_error_panic_hook = { version = "0.1.7", default-features = false }
js-sys = { version = "0.3.61", default-features = false, features = [] }
serde_json = { version = "1.0.94", default-features = false }
tokio = { version = "1.26.0", default-features = false, features = [ "sync" ] }
wasm-bindgen = { version = "0.2.84", default-features = false, features = [ "spans", "std", "serde-serialize" ] }
wasm-bindgen-futures = { version = "0.4.34", default-features = false }
[target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dependencies]
getrandom = { version = "0.2.8", default-features = false, features = [ "js" ] }
instant = { version = "0.1.12", default-features = false, features = [ "wasm-bindgen" ] }