[cargo] Add the required rand features for wasm32

This commit is contained in:
Alekos Filini 2020-09-16 17:30:11 +02:00
parent 57ea653f1c
commit cf2a8bccac
No known key found for this signature in database
GPG Key ID: 5E8AFC3034FDFA4F

View File

@ -36,6 +36,7 @@ tokio = { version = "0.2", features = ["rt-core"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
async-trait = "0.1"
js-sys = "0.3"
rand = { version = "^0.7", features = ["wasm-bindgen"] }
[features]
minimal = []
@ -61,7 +62,6 @@ lazy_static = "1.4"
rustyline = "6.0"
dirs = "2.0"
env_logger = "0.7"
rand = "0.7"
[[example]]
name = "repl"