Skip to content

Commit

Permalink
Update rand requirement from 0.7 to 0.8
Browse files Browse the repository at this point in the history
Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version.
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.7.0...0.8.0)

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 8, 2022
1 parent 37e2839 commit bd81a4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion curve25519-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ version = "0.5"
default-features = false

[dev-dependencies]
rand = "0.7"
rand = "0.8"
2 changes: 1 addition & 1 deletion mla/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "../README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rand = { version = "0.7", default-features = false, features = ["getrandom", "std"]}
rand = { version = "0.8", default-features = false, features = ["getrandom", "std"]}
rand_chacha = { version = "0.2", default-features = false}
brotli = { version = "3.3", default-features = false, features = ["std"]}
bitflags = { version = "1.2", default-features = false}
Expand Down
2 changes: 1 addition & 1 deletion mlar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ clap = "3"
glob = "0.3"
mla = { path = "../mla", version = "1" }
curve25519-parser = { path = "../curve25519-parser", version = "0.2" }
rand = "0.7"
rand = "0.8"
x25519-dalek = "1"
humansize = "1"
hex = "0.4"
Expand Down

0 comments on commit bd81a4f

Please sign in to comment.