Skip to content

Commit

Permalink
Bump dependencies versions (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdeafbeef authored Sep 13, 2021
1 parent d2ca104 commit c0def35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ edition = "2018"
[dependencies]
libsecp256k1-core = { version = "0.1.0", path = "core", default-features = false }
arrayref = "0.3"
rand = { version = "0.7", default-features = false }
rand = { version = "0.8", default-features = false }
digest = "0.9"
base64 = { version = "0.12", default-features = false }
base64 = { version = "0.13", default-features = false }
hmac-drbg = { version = "0.3", optional = true }
sha2 = { version = "0.9", optional = true, default-features = false }
typenum = { version = "1.12", optional = true }
serde = { version = "1.0.104", features = ["derive"], default-features = false }

[dev-dependencies]
secp256k1-test = { package = "secp256k1", version = "0.17", features = ["rand-std", "recovery"] }
secp256k1-test = { package = "secp256k1", version = "0.20.3", features = ["rand-std", "recovery"] }
clear_on_drop = "0.2"
serde_json = "1.0"
hex-literal = "0.2.1"
hex-literal = "0.3.3"

[build-dependencies]
libsecp256k1-gen-ecmult = { version = "0.1.0", path = "gen/ecmult" }
Expand Down
2 changes: 1 addition & 1 deletion tests/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ fn test_pubkey_combine() {
#[test]
fn test_pubkey_equality() {
for _ in 0..10 {
let secret = SecretKey::random(&mut rand::thread_rng());
let secret = SecretKey::random(&mut rand::rngs::OsRng);
let public = PublicKey::from_secret_key(&secret);

let public2 = PublicKey::parse(&public.serialize()).unwrap();
Expand Down

0 comments on commit c0def35

Please sign in to comment.