Skip to content

Commit

Permalink
update rand
Browse files Browse the repository at this point in the history
  • Loading branch information
aep committed Jan 10, 2019
1 parent 2c22ff6 commit f14b012
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ exclude = [ ".gitignore", "TESTVECTORS", "res/*" ]
travis-ci = { repository = "dalek-cryptography/ed25519-dalek", branch = "master"}

[dependencies.curve25519-dalek]
version = "1.0.0-pre.0"
version = "1.0.1"
default-features = false

[dependencies.rand]
version = "0.5"
version = "0.6"
default-features = false
features = ["i128_support"]

Expand Down
4 changes: 2 additions & 2 deletions src/ed25519.rs
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ impl From<ExpandedSecretKey> for PublicKey {
/// use ed25519_dalek::PublicKey;
/// use ed25519_dalek::Signature;
/// use rand::thread_rng;
/// use rand::ThreadRng;
/// use rand::prelude::ThreadRng;
/// use sha2::Sha512;
///
/// # fn main() {
Expand Down Expand Up @@ -1382,7 +1382,7 @@ mod test {
use rand::thread_rng;
use rand::ChaChaRng;
use rand::SeedableRng;
use rand::ThreadRng;
use rand::prelude::ThreadRng;
use hex::FromHex;
use sha2::Sha512;
use super::*;
Expand Down

0 comments on commit f14b012

Please sign in to comment.