From bd81a4f42604438ad2f27b5a889d710d70d59af3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jan 2022 14:35:09 +0000 Subject: [PATCH] Update rand requirement from 0.7 to 0.8 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](https://github.com/rust-random/rand/compare/0.7.0...0.8.0) Signed-off-by: dependabot[bot] --- curve25519-parser/Cargo.toml | 2 +- mla/Cargo.toml | 2 +- mlar/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/curve25519-parser/Cargo.toml b/curve25519-parser/Cargo.toml index 631c65d0..c5153ccc 100644 --- a/curve25519-parser/Cargo.toml +++ b/curve25519-parser/Cargo.toml @@ -23,4 +23,4 @@ version = "0.5" default-features = false [dev-dependencies] -rand = "0.7" +rand = "0.8" diff --git a/mla/Cargo.toml b/mla/Cargo.toml index 63b3ec90..d01559bd 100644 --- a/mla/Cargo.toml +++ b/mla/Cargo.toml @@ -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} diff --git a/mlar/Cargo.toml b/mlar/Cargo.toml index 3a392bcd..6cdcabf0 100644 --- a/mlar/Cargo.toml +++ b/mlar/Cargo.toml @@ -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"