Skip to content
This repository has been archived by the owner on Jun 3, 2020. It is now read-only.

Commit

Permalink
bump rand version to match x25519-dalek's (^0.6)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamsi committed Jan 23, 2019
1 parent 018dbdf commit c0fbd1d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ failure_derive = "0.1"
lazy_static = "1"
prost-amino = "0.4.0"
prost-amino-derive = "0.4.0"
rand = "0.5"
rand = "0.6"
serde = "1"
serde_derive = "1"
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion tendermint-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ failure_derive = "0.1"
hkdf = { version = "0.7", optional = true }
prost-amino = { version = "0.4.0", optional = true }
prost-amino-derive = { version = "0.4.0", optional = true }
rand = { version = "0.5", optional = true }
rand = { version = "0.6", optional = true }
ring = { version = "0.13", optional = true }
serde = { version = "1", optional = true }
serde_derive = { version = "1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion tendermint-rs/src/secret_connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mod kdf;
mod nonce;

use self::{
rand::OsRng,
rand::rngs::OsRng,
ring::aead,
x25519_dalek::{EphemeralPublic, EphemeralSecret},
};
Expand Down

0 comments on commit c0fbd1d

Please sign in to comment.