Skip to content

Commit

Permalink
Update rand_core, curve25519-dalek, merlin versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence committed Nov 26, 2019
1 parent 4a05305 commit 5a1e345
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ keywords = ["cryptography", "crypto", "ristretto", "zero-knowledge", "bulletproo
description = "A pure-Rust implementation of Bulletproofs using Ristretto"

[dependencies]
curve25519-dalek = { version = "^1.2.3", default-features = false, features = ["u64_backend", "nightly", "serde", "alloc"] }
curve25519-dalek = { version = "2", default-features = false, features = ["u64_backend", "nightly", "serde", "alloc"] }
subtle = { version = "2", default-features = false }
sha3 = { version = "0.8", default-features = false }
digest = { version = "0.8", default-features = false }
rand_core = { version = "0.4", default-features = false, features = ["alloc"] }
rand = { version = "0.6", default-features = false, optional = true }
rand_core = { version = "0.5", default-features = false, features = ["alloc"] }
rand = { version = "0.7", default-features = false, optional = true }
byteorder = { version = "1", default-features = false }
serde = { version = "1", default-features = false, features = ["alloc"] }
serde_derive = { version = "1", default-features = false }
failure = { version = "0.1", default-features = false, features = ["derive"] }
merlin = { version = "1.2", default-features = false }
merlin = { version = "2", default-features = false }
clear_on_drop = { version = "0.2", default-features = false, features = ["nightly"] }

[dev-dependencies]
hex = "0.3"
criterion = "0.2"
bincode = "1"
rand_chacha = "0.1"
rand_chacha = "0.2"

[features]
default = ["std", "avx2_backend"]
Expand Down
4 changes: 2 additions & 2 deletions tests/range_proof.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
extern crate rand;
use rand::SeedableRng;
extern crate rand_core;
use rand_core::SeedableRng;

extern crate rand_chacha;
use rand_chacha::ChaChaRng;
Expand Down

0 comments on commit 5a1e345

Please sign in to comment.