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" }