Skip to content

Commit

Permalink
Fix wasm compilation (#404)
Browse files Browse the repository at this point in the history
Explicitly enable tokio "rt" feature to fix compilation of bee-runtime
dependency.
  • Loading branch information
cycraig committed Sep 20, 2021
1 parent 75bb07b commit 94ccfd2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bindings/wasm/Cargo.toml
Expand Up @@ -20,6 +20,7 @@ futures = { version = "0.3" }
js-sys = { version = "0.3" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false }
tokio = { version = "*", default-features = false, features = ["rt"] } # enable "rt" feature to fix build: https://github.com/iotaledger/identity.rs/issues/403
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4", default-features = false }

Expand Down

0 comments on commit 94ccfd2

Please sign in to comment.