From 8a0847d161fd348117642dc9c33ab3a2124c2c6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 09:04:26 +0000 Subject: [PATCH] build(deps): update rand_distr requirement from 0.4 to 0.5 Updates the requirements on [rand_distr](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/rand_distr-0.4.0...0.5.0) --- updated-dependencies: - dependency-name: rand_distr dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- fuzz/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 89ed746c..d232648e 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -13,7 +13,7 @@ arbitrary = { version = "1", features = ["derive"] } bytes = "1" compact_str = { path = "../compact_str", features = ["bytes", "smallvec"] } rand = { version = "0.8", features = ["small_rng"] } -rand_distr = "0.4" +rand_distr = "0.5" # Fuzz with both AFL++ and libFuzzer afl = { version = "0.14.2", optional = true }