diff --git a/rust/Cargo.toml b/rust/Cargo.toml index ffa7f78a..df680e2e 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -38,7 +38,7 @@ serde = { version = "1.0", features = ["derive"] } # non-wasm [target.'cfg(not(all(target_arch = "wasm32", not(target_os = "emscripten"))))'.dependencies] -rand_os = "0.1" +rand_os = "0.2" noop_proc_macro = "0.3.0" getrandom = "0.2.3" @@ -46,7 +46,7 @@ getrandom = "0.2.3" [target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies] serde-wasm-bindgen = "0.4.5" wasm-bindgen = "=0.2.83" -rand_os = { version = "0.1", features = ["wasm-bindgen"] } +rand_os = { version = "0.2", features = ["wasm-bindgen"] } js-sys = "0.3.51" getrandom = { version = "0.2.3", features = ["js"] } @@ -57,7 +57,7 @@ opt-level = "s" [dev-dependencies] quickcheck = "0.9.2" quickcheck_macros = "0.9.1" -rand_os = "0.1" +rand_os = "0.2" rand_chacha = "0.1" [build-dependencies]