Skip to content

Commit d5ce1fa

Browse files
committed
fix(deps): downgrade rand_core to 0.6
getrandom feature is renamed to os_rng in 0.9 argon2 uses rand_core 0.6, as a result we need rand_core 0.6 for compatibility.
1 parent 74c9507 commit d5ce1fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resolver = "2"
2020
once_cell = "1"
2121
quickcheck = "1.0"
2222
rand = "0.9"
23-
rand_core = { version = "0.9", features = ["getrandom"] }
23+
rand_core = { version = "0.6", features = ["getrandom"] }
2424
serde = "1.0"
2525
serde_json = "1.0"
2626
xxhash-rust = { version = "0.8", features = ["xxh32", "const_xxh32", "xxh64", "const_xxh64", "xxh3", "const_xxh3"] }

0 commit comments

Comments
 (0)