Remove last non-dev dependency on rand crate (#1324)

Use std RandomState for XorShift seeding. This allows dropping _rand_
crate dep here, accept as a dev dependency for tests or benchmarks.
This commit is contained in:
David Kellum
2019-07-19 12:12:32 -07:00
committed by Carl Lerche
parent 12ce75f088
commit b89ed00a0d
2 changed files with 34 additions and 7 deletions
+2 -1
View File
@@ -32,11 +32,12 @@ crossbeam-deque = "0.7.0"
crossbeam-queue = "0.1.0"
crossbeam-utils = "0.6.4"
num_cpus = "1.2"
rand = "0.7"
slab = "0.4.1"
log = "0.4"
lazy_static = "1"
[dev-dependencies]
rand = "0.7"
env_logger = "0.5"
async-util = { git = "https://github.com/tokio-rs/async" }
tokio = { version = "0.2.0", path = "../tokio" }