From a0cc05c83d0c98f572a0f37b67466eabdb194f2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Aug 2023 07:27:15 -0700 Subject: [PATCH] chore(deps): bump afl from 0.13.5 to 0.14.1 (#421) Bumps [afl](https://github.com/rust-fuzz/afl.rs) from 0.13.5 to 0.14.1. - [Release notes](https://github.com/rust-fuzz/afl.rs/releases) - [Changelog](https://github.com/rust-fuzz/afl.rs/blob/master/CHANGES.md) - [Commits](https://github.com/rust-fuzz/afl.rs/compare/0.13.5...0.14.1) --- updated-dependencies: - dependency-name: afl dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 56 ++++----------------------------------------- lib/fuzz/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 53 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8d41e9b2e1..9eb1210d2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,16 +31,13 @@ dependencies = [ [[package]] name = "afl" -version = "0.13.5" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f890b8b9b41264fcff07f3d4036648dd77df46e772793c6bd23a22249d75d7e5" +checksum = "525e1011266780f6afa640d6149901a37e89c46c1329b8cbf33e1f6c271f7a36" dependencies = [ - "clap 4.4.0", - "fs_extra", "home", "libc", "rustc_version", - "tempfile", "xdg", ] @@ -573,7 +570,6 @@ dependencies = [ "anstream", "anstyle", "clap_lex", - "once_cell", "strsim 0.10.0", ] @@ -1008,12 +1004,6 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" -[[package]] -name = "fastrand" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" - [[package]] name = "fixedbitset" version = "0.4.2" @@ -1039,12 +1029,6 @@ dependencies = [ "percent-encoding", ] -[[package]] -name = "fs_extra" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" - [[package]] name = "funty" version = "2.0.0" @@ -1283,7 +1267,7 @@ checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" dependencies = [ "hermit-abi 0.3.1", "io-lifetimes", - "rustix 0.37.20", + "rustix", "windows-sys 0.48.0", ] @@ -1412,12 +1396,6 @@ version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" -[[package]] -name = "linux-raw-sys" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" - [[package]] name = "lock_api" version = "0.4.10" @@ -2291,20 +2269,7 @@ dependencies = [ "errno", "io-lifetimes", "libc", - "linux-raw-sys 0.3.8", - "windows-sys 0.48.0", -] - -[[package]] -name = "rustix" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac5ffa1efe7548069688cd7028f32591853cd7b5b756d41bcffd2353e4fc75b4" -dependencies = [ - "bitflags 2.3.3", - "errno", - "libc", - "linux-raw-sys 0.4.5", + "linux-raw-sys", "windows-sys 0.48.0", ] @@ -2644,19 +2609,6 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" -[[package]] -name = "tempfile" -version = "3.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" -dependencies = [ - "cfg-if", - "fastrand", - "redox_syscall 0.3.5", - "rustix 0.38.3", - "windows-sys 0.48.0", -] - [[package]] name = "term" version = "0.7.0" diff --git a/lib/fuzz/Cargo.toml b/lib/fuzz/Cargo.toml index 0a6f38e898..bee03225e7 100644 --- a/lib/fuzz/Cargo.toml +++ b/lib/fuzz/Cargo.toml @@ -11,5 +11,5 @@ name = "fuzz" path = "src/main.rs" [dependencies] -afl = "0.13.5" +afl = "0.14.1" vrl = { path = "../../" }