From 5505a0c42cf189a0afeaeb5ab4ca558884bec0ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20C?= <54852465+bcortier-devolutions@users.noreply.github.com> Date: Thu, 4 Feb 2021 04:11:43 -0500 Subject: [PATCH] Update dependencies (#17) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: BenoƮt CORTIER --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2ae5061..d2c12e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,17 +18,17 @@ codecov = { repository = "c0dearm/sharks" } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["std"] -std = ["rand/std"] +std = ["rand/std", "rand/std_rng"] fuzzing = ["std", "arbitrary"] [dependencies] -rand = { version = "0.7", default-features = false } -hashbrown = "0.7" -arbitrary = {version = "0.4.2", features = ["derive"], optional = true} +rand = { version = "0.8", default-features = false } +hashbrown = "0.9" +arbitrary = { version = "0.4.7", features = ["derive"], optional = true } [dev-dependencies] criterion = "0.3" -rand_chacha = "0.2" +rand_chacha = "0.3" [[bench]] name = "benchmarks"