Skip to content

Commit

Permalink
Fix breakage on builds with the rand crate disabled.
Browse files Browse the repository at this point in the history
 * CLOSES #108
 * THANKS TO @tarcieri
  • Loading branch information
isislovecruft committed Dec 11, 2019
1 parent af15a0e commit 8a2e9af
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ed25519.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

use core::default::Default;

#[cfg(feature = "rand")]
use rand::{CryptoRng, RngCore};

#[cfg(feature = "serde")]
Expand Down

0 comments on commit 8a2e9af

Please sign in to comment.