mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Merge branch 'fix/unused-rand_os' into develop
This commit is contained in:
commit
28c2f2e3d1
2 changed files with 1 additions and 3 deletions
|
|
@ -65,7 +65,7 @@ harness = false
|
|||
[features]
|
||||
default = ["std", "u64_backend"]
|
||||
std = ["curve25519-dalek/std", "rand_os", "sha2/std"]
|
||||
alloc = ["curve25519-dalek/alloc", "rand_os"]
|
||||
alloc = ["curve25519-dalek/alloc"]
|
||||
nightly = ["curve25519-dalek/nightly", "clear_on_drop/nightly"]
|
||||
batch = ["rand"]
|
||||
asm = ["sha2/asm"]
|
||||
|
|
|
|||
|
|
@ -262,8 +262,6 @@ extern crate curve25519_dalek;
|
|||
extern crate failure;
|
||||
#[cfg(all(feature = "batch", any(feature = "std", feature = "alloc", test)))]
|
||||
extern crate rand;
|
||||
#[cfg(any(feature = "std", test))]
|
||||
extern crate rand_os;
|
||||
extern crate rand_core;
|
||||
#[cfg(feature = "serde")]
|
||||
extern crate serde;
|
||||
|
|
|
|||
Loading…
Reference in a new issue