From 8823c460fc71e185e14af62670c872dea5f0c895 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Wed, 23 Dec 2020 22:12:16 +0100 Subject: [PATCH] rand: update to 0.8 Signed-off-by: Marc-Antoine Perennou --- Cargo.toml | 4 ++-- tests/channel.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 93f783cc..1ca61fb8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -99,10 +99,10 @@ wasm-bindgen-test = "0.3.10" [dev-dependencies] femme = "2.1.1" -rand = "0.7.3" +rand = "0.8.0" tempfile = "3.1.0" futures = "0.3.4" -rand_xorshift = "0.2.0" +rand_xorshift = "0.3.0" [[test]] name = "stream" diff --git a/tests/channel.rs b/tests/channel.rs index 181a5d2c..f9eacb6d 100644 --- a/tests/channel.rs +++ b/tests/channel.rs @@ -345,8 +345,8 @@ fn drops() { for _ in 0..RUNS { let mut rng = rand_xorshift::XorShiftRng::seed_from_u64(0); task::block_on(async move { - let steps = rng.gen_range(0, 10_000); - let additional = rng.gen_range(0, 50); + let steps = rng.gen_range(0..10_000); + let additional = rng.gen_range(0..50); DROPS.store(0, Ordering::SeqCst); let (s, r) = channel::(50);