From a30a78753cd1ab5ce40089019f6f45449a36a048 Mon Sep 17 00:00:00 2001 From: Lyon Beckers Date: Wed, 27 Jan 2021 11:29:51 -0700 Subject: [PATCH] upgrade rand to 0.8 --- Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 62961ee..b8b7ffe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,12 +22,11 @@ maintenance = { status = "actively-developed" } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["log", "rand"] -wasm-bindgen = ["rand/wasm-bindgen"] -stdweb = ["rand/stdweb"] [dependencies] log = { version = "0.4", optional = true } -rand = { version = "0.7", optional = true } +rand = { version = "0.8", optional = true } +getrandom = { version = "0.2.2", optional = true } wasm-timer = "0.2" [dev-dependencies]