Workaround for rand crate "nightly" feature breakage.

Cf. https://github.com/rust-random/rand/issues/1047
This commit is contained in:
Isis Lovecruft 2020-09-21 23:25:15 +00:00
parent bd572dcd52
commit 5d7bc29ba2
No known key found for this signature in database
GPG key ID: AB41313533E8E812

View file

@ -50,7 +50,7 @@ harness = false
default = ["std", "u64_backend"]
std = ["curve25519-dalek/std", "ed25519/std", "serde_crate/std", "sha2/std", "rand/std"]
alloc = ["curve25519-dalek/alloc", "rand/alloc", "zeroize/alloc"]
nightly = ["curve25519-dalek/nightly", "rand/nightly"]
nightly = ["curve25519-dalek/nightly"]
serde = ["serde_crate", "ed25519/serde"]
batch = ["merlin", "rand"]
# This feature enables deterministic batch verification.