Merge pull request #673 from dhardy/master

Fix rand_xoshiro dependencies
diff --git a/Cargo.toml b/Cargo.toml
index 59950fe..cf375c9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -49,7 +49,6 @@
 rand_chacha = { path = "rand_chacha", version = "0.1" }
 rand_hc = { path = "rand_hc", version = "0.1" }
 rand_xorshift = { path = "rand_xorshift", version = "0.1" }
-rand_xoshiro = { path = "rand_xoshiro", version = "0.1" }
 log = { version = "0.4", optional = true }
 
 [dependencies.packed_simd]
@@ -69,6 +68,8 @@
 [dev-dependencies]
 # This has a histogram implementation used for testing uniformity.
 average = "0.9.2"
+# Only for benches:
+rand_xoshiro = { path = "rand_xoshiro", version = "0.1" }
 
 [build-dependencies]
 autocfg = "0.1"
diff --git a/rand_xoshiro/Cargo.toml b/rand_xoshiro/Cargo.toml
index 65e238d..8d174c7 100644
--- a/rand_xoshiro/Cargo.toml
+++ b/rand_xoshiro/Cargo.toml
@@ -16,4 +16,4 @@
 rand_core = { path = "../rand_core", version = "0.3", default-features=false }
 
 [dev-dependencies]
-rand = { path = "..", default-features=false }  # needed for doctests
+rand = { path = "..", version = "0.6", default-features=false }  # needed for doctests