From 4cb583f3f4335a4058963beb0c0b93bca753cea8 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Sun, 14 Feb 2021 09:09:38 +0100 Subject: [PATCH] Cargo.toml: Update rand and rand_core to 0.8 and 0.6 (#107) --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3e4fa24..5101ccb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,14 +37,14 @@ harness = false travis-ci = { repository = "mcginty/snow", branch = "master" } [dependencies] -rand_core = "0.5" +rand_core = "0.6" subtle = "2.2" # default crypto provider aes-gcm = { version = "0.8", optional = true } chacha20poly1305 = { version = "0.7", optional = true } blake2 = { version = "0.9", optional = true } -rand = { version = "0.7", optional = true } +rand = { version = "0.8", optional = true } sha2 = { version = "0.9", optional = true } x25519-dalek = { version = "1.1", optional = true } pqcrypto-kyber = { version = "0.6", optional = true }