File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -99,10 +99,10 @@ wasm-bindgen-test = "0.3.10"
9999
100100[dev-dependencies ]
101101femme = " 2.1.1"
102- rand = " 0.7.3 "
102+ rand = " 0.8.0 "
103103tempfile = " 3.1.0"
104104futures = " 0.3.4"
105- rand_xorshift = " 0.2 .0"
105+ rand_xorshift = " 0.3 .0"
106106
107107[[test ]]
108108name = " stream"
Original file line number Diff line number Diff line change @@ -345,8 +345,8 @@ fn drops() {
345345 for _ in 0 ..RUNS {
346346 let mut rng = rand_xorshift:: XorShiftRng :: seed_from_u64 ( 0 ) ;
347347 task:: block_on ( async move {
348- let steps = rng. gen_range ( 0 , 10_000 ) ;
349- let additional = rng. gen_range ( 0 , 50 ) ;
348+ let steps = rng. gen_range ( 0 .. 10_000 ) ;
349+ let additional = rng. gen_range ( 0 .. 50 ) ;
350350
351351 DROPS . store ( 0 , Ordering :: SeqCst ) ;
352352 let ( s, r) = channel :: < DropCounter > ( 50 ) ;
You can’t perform that action at this time.
0 commit comments