Skip to content

Commit ddf6e3c

Browse files
committed
Remove rand dependency, update rand_xoshiro
1 parent 3231cee commit ddf6e3c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

testcrate/Cargo.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,11 @@ edition = "2018"
88
test = false
99
doctest = false
1010

11-
[build-dependencies]
12-
rand = "0.7"
13-
1411
[dependencies]
1512
# For fuzzing tests we want a deterministic seedable RNG. We also eliminate potential
1613
# problems with system RNGs on the variety of platforms this crate is tested on.
1714
# `xoshiro128**` is used for its quality, size, and speed at generating `u32` shift amounts.
18-
rand_xoshiro = "0.4"
15+
rand_xoshiro = "0.6"
1916

2017
[dependencies.compiler_builtins]
2118
path = ".."

0 commit comments

Comments
 (0)