From c13239a6f88f3e22613e2e8c87f6686e4e3af265 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 12:14:02 +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-preview[bot] --- crates/crypto/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/crypto/Cargo.toml b/crates/crypto/Cargo.toml index 4f64700..6955dbc 100644 --- a/crates/crypto/Cargo.toml +++ b/crates/crypto/Cargo.toml @@ -5,7 +5,7 @@ authors = ["luozijun "] edition = "2018" [dependencies] -rand = "0.7" +rand = "0.8" base64 = "0.10" ed25519-dalek = "1.0.0-pre.1" chacha20-poly1305-aead = "0.1"