forked from input-output-hk/mithril
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 975 Bytes
/
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
31
32
33
34
35
36
37
38
[package]
name = "mithril-client-wasm"
version = "0.4.1"
description = "Mithril client WASM"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
categories = ["cryptography"]
[lib]
crate-type = ["cdylib"]
[dependencies]
async-trait = "0.1.82"
futures = "0.3.30"
mithril-client = { path = "../mithril-client", features = ["unstable"] }
serde = { version = "1.0.209", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
wasm-bindgen = "0.2.93"
wasm-bindgen-futures = "0.4.43"
web-sys = { version = "0.3.70", features = ["BroadcastChannel"] }
[dev-dependencies]
wasm-bindgen-test = "0.3.43"
[build-dependencies]
mithril-build-script = { path = "../internal/mithril-build-script" }
[features]
# Include nothing by default
default = []
[package.metadata.docs.rs]
all-features = true
# enable unstable features in the documentation
rustdoc-args = ["--cfg", "docsrs"]