Auto merge of #927 - RalfJung:getrandom, r=RalfJung
explicitly enable getrandom/std feature This seems to be what rand_core does, and then we need to do it as well or else the rustc feature checker complains.
This commit is contained in:
commit
69268fb75f
1 changed files with 2 additions and 2 deletions
|
|
@ -31,11 +31,11 @@ doctest = false # and no doc tests
|
|||
required-features = ["rustc_tests"]
|
||||
|
||||
[dependencies]
|
||||
byteorder = { version = "1.1", features = ["i128"]}
|
||||
byteorder = { version = "1.1", features = ["i128"] }
|
||||
cargo_metadata = { version = "0.8", optional = true }
|
||||
directories = { version = "2.0", optional = true }
|
||||
rustc_version = { version = "0.2.3", optional = true }
|
||||
getrandom = "0.1.8"
|
||||
getrandom = { version = "0.1.8", features = ["std"] }
|
||||
env_logger = "0.6"
|
||||
log = "0.4"
|
||||
shell-escape = "0.1.4"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue