From 0ce690ada048693e3454ffe5e6e13451ee994047 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 23:26:57 +0000 Subject: [PATCH] Update afl requirement from 0.14.5 to 0.15.2 Updates the requirements on [afl](https://github.com/rust-fuzz/afl.rs) to permit the latest version. - [Changelog](https://github.com/rust-fuzz/afl.rs/blob/master/CHANGES.md) - [Commits](https://github.com/rust-fuzz/afl.rs/commits) --- updated-dependencies: - dependency-name: afl dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- fuzzer/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzer/Cargo.toml b/fuzzer/Cargo.toml index 817589a..47c113d 100644 --- a/fuzzer/Cargo.toml +++ b/fuzzer/Cargo.toml @@ -11,5 +11,5 @@ exclude = ["target", "Cargo.lock"] publish = false [dependencies] -afl = "0.14.5" +afl = "0.15.2" anes = { path = "../anes", features = ["parser"] }