Skip to content

Commit ec634c3

Browse files
authored
Merge pull request #673 from dhardy/master
Fix rand_xoshiro dependencies
2 parents 3001e91 + cf5e07f commit ec634c3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ rand_isaac = { path = "rand_isaac", version = "0.1" }
4949
rand_chacha = { path = "rand_chacha", version = "0.1" }
5050
rand_hc = { path = "rand_hc", version = "0.1" }
5151
rand_xorshift = { path = "rand_xorshift", version = "0.1" }
52-
rand_xoshiro = { path = "rand_xoshiro", version = "0.1" }
5352
log = { version = "0.4", optional = true }
5453

5554
[dependencies.packed_simd]
@@ -69,6 +68,8 @@ winapi = { version = "0.3", features = ["minwindef", "ntsecapi", "profileapi", "
6968
[dev-dependencies]
7069
# This has a histogram implementation used for testing uniformity.
7170
average = "0.9.2"
71+
# Only for benches:
72+
rand_xoshiro = { path = "rand_xoshiro", version = "0.1" }
7273

7374
[build-dependencies]
7475
autocfg = "0.1"

rand_xoshiro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ byteorder = { version = "1", default-features=false }
1616
rand_core = { path = "../rand_core", version = "0.3", default-features=false }
1717

1818
[dev-dependencies]
19-
rand = { path = "..", default-features=false } # needed for doctests
19+
rand = { path = "..", version = "0.6", default-features=false } # needed for doctests

0 commit comments

Comments
 (0)