From 08ef5c515e72b087ee9c50724eaebae746c58e65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 May 2021 02:37:45 +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.3) Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 14cff0c..30e6734 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ strict_encoding = { version = "1.2", optional = true } subtle = { version = "2", default-features = false } hash_edwards_to_edwards = { git = "https://github.com/comit-network/hash_edwards_to_edwards" } integer-encoding = "3" -rand = { version = "0.7", optional = true } +rand = { version = "0.8", optional = true } lazy_static = "1" clear_on_drop = { version = "0.2", default-features = false } itertools = "0.10" @@ -47,7 +47,7 @@ version = "0.7.0" default-features = false [dev-dependencies] -rand = { version = "0.7", features = ["std"] } +rand = { version = "0.8", features = ["std"] } serde_json = "1" [package.metadata.docs.rs]