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"
99
99
100
100
[dev-dependencies ]
101
101
femme = " 2.1.1"
102
- rand = " 0.7.3 "
102
+ rand = " 0.8.0 "
103
103
tempfile = " 3.1.0"
104
104
futures = " 0.3.4"
105
- rand_xorshift = " 0.2 .0"
105
+ rand_xorshift = " 0.3 .0"
106
106
107
107
[[test ]]
108
108
name = " stream"
Original file line number Diff line number Diff line change @@ -345,8 +345,8 @@ fn drops() {
345
345
for _ in 0 ..RUNS {
346
346
let mut rng = rand_xorshift:: XorShiftRng :: seed_from_u64 ( 0 ) ;
347
347
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 ) ;
350
350
351
351
DROPS . store ( 0 , Ordering :: SeqCst ) ;
352
352
let ( s, r) = channel :: < DropCounter > ( 50 ) ;
You can’t perform that action at this time.
0 commit comments