Use getrandom for random_get, disable default rand features (#625)

* use getrandom, disable default rand features
This commit is contained in:
Artyom Pavlov
2019-11-25 23:01:09 +00:00
committed by Dan Gohman
parent 64f9cee842
commit 752ed901d6
4 changed files with 12 additions and 14 deletions

View File

@@ -44,7 +44,7 @@ errno = "0.2.4"
tempfile = "3"
target-lexicon = { version = "0.9.0", default-features = false }
pretty_env_logger = "0.3.0"
rand = { version = "0.7.0", features = ["small_rng"] }
rand = { version = "0.7.0", default-features = false, features = ["small_rng"] }
cranelift-codegen = { version = "0.50.0", features = ["enable-serde", "all-arch"] }
filetime = "0.2.7"