Skip to content

Commit 2f60422

Browse files
committed
Update rand to 0.9
1 parent 3bcb845 commit 2f60422

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ equivalent = { version = "1.0", optional = true, default-features = false }
3535

3636
[dev-dependencies]
3737
lazy_static = "1.4"
38-
rand = { version = "0.8.3", features = ["small_rng"] }
38+
rand = { version = "0.9.0", features = ["small_rng"] }
3939
rayon = "1.2"
4040
fnv = "1.0.7"
4141
serde_test = "1.0"

tests/set.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![cfg(not(miri))] // FIXME: takes too long
22

33
use hashbrown::HashSet;
4-
use rand::{distributions::Alphanumeric, rngs::SmallRng, Rng, SeedableRng};
4+
use rand::{distr::Alphanumeric, rngs::SmallRng, Rng, SeedableRng};
55
use std::iter;
66

77
#[test]

0 commit comments

Comments
 (0)