Skip to content

Commit 69268fb

Browse files
committed
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.
2 parents 2be0db4 + 283829c commit 69268fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ doctest = false # and no doc tests
3131
required-features = ["rustc_tests"]
3232

3333
[dependencies]
34-
byteorder = { version = "1.1", features = ["i128"]}
34+
byteorder = { version = "1.1", features = ["i128"] }
3535
cargo_metadata = { version = "0.8", optional = true }
3636
directories = { version = "2.0", optional = true }
3737
rustc_version = { version = "0.2.3", optional = true }
38-
getrandom = "0.1.8"
38+
getrandom = { version = "0.1.8", features = ["std"] }
3939
env_logger = "0.6"
4040
log = "0.4"
4141
shell-escape = "0.1.4"

0 commit comments

Comments
 (0)