From 4581c50023888819f9f895c8fcf6d34cc6ee1ab1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 14:46:40 +0100 Subject: [PATCH] Update hashbrown requirement from 0.14.5 to 0.15.1 (#2660) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- libafl_frida/Cargo.toml | 2 +- libafl_qemu/Cargo.toml | 2 +- libafl_targets/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libafl_frida/Cargo.toml b/libafl_frida/Cargo.toml index 18385a7e98..bc5a6180f5 100644 --- a/libafl_frida/Cargo.toml +++ b/libafl_frida/Cargo.toml @@ -64,7 +64,7 @@ libafl_targets = { path = "../libafl_targets", version = "0.13.2", features = [ nix = { version = "0.29.0", default-features = true, features = ["mman"] } libc = { version = "0.2.59" } -hashbrown = { version = "0.14.5", default-features = true } +hashbrown = { version = "0.15.1", default-features = true } rangemap = { version = "1.5.1" } frida-gum-sys = { version = "0.15.1", features = [ "event-sink", diff --git a/libafl_qemu/Cargo.toml b/libafl_qemu/Cargo.toml index 3a2a1d0381..f84ce72a1e 100644 --- a/libafl_qemu/Cargo.toml +++ b/libafl_qemu/Cargo.toml @@ -104,7 +104,7 @@ libafl_derive = { path = "../libafl_derive", version = "0.13.2" } serde = { version = "1.0.210", default-features = false, features = [ "alloc", ] } # serialization lib -hashbrown = { version = "0.14.5", default-features = true, features = [ +hashbrown = { version = "0.15.1", default-features = true, features = [ "serde", ] } # A faster hashmap, nostd compatible num-traits = { version = "0.2.19", default-features = true } diff --git a/libafl_targets/Cargo.toml b/libafl_targets/Cargo.toml index 8f09235ccb..8ec5dd3496 100644 --- a/libafl_targets/Cargo.toml +++ b/libafl_targets/Cargo.toml @@ -75,7 +75,7 @@ libafl = { path = "../libafl", version = "0.13.2", default-features = false, fea libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", default-features = false, features = [ ] } libc = { version = "0.2.59" } -hashbrown = { version = "0.14.5", default-features = true } +hashbrown = { version = "0.15.1", default-features = true } once_cell = "1.19.0" log = { version = "0.4.22" } rustversion = { version = "1.0.17" }