diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index 5fa664f91f..eb70f38486 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -57,7 +57,7 @@ ctor = "0.1.20" num_enum = { version = "0.5.1", default-features = false } typed-builder = "0.9.0" # Implement the builder pattern at compiletime ahash = { version = "0.7", default-features=false, features=["compile-time-rng"] } # The hash function already used in hashbrown -intervaltree = { git = "https://github.com/andreafioraldi/rust-intervaltree", version = "0.2.6", default-features = false, features = ["serde"] } +intervaltree = { version = "0.2.7", default-features = false, features = ["serde"] } libafl_derive = { version = "0.7.0", optional = true, path = "../libafl_derive" } serde_json = { version = "1.0", optional = true, default-features = false, features = ["alloc"] } # an easy way to debug print SerdeAnyMap diff --git a/libafl_qemu/build.rs b/libafl_qemu/build.rs index 5b379afb2d..d8362f813b 100644 --- a/libafl_qemu/build.rs +++ b/libafl_qemu/build.rs @@ -3,7 +3,7 @@ use which::which; const QEMU_URL: &str = "https://github.com/AFLplusplus/qemu-libafl-bridge"; const QEMU_DIRNAME: &str = "qemu-libafl-bridge"; -const QEMU_REVISION: &str = "a6b44da636a6baab71c79c715f23c0306744631b"; +const QEMU_REVISION: &str = "e97deaae59c1825823037c2d549f8697a05d157c"; fn build_dep_check(tools: &[&str]) { for tool in tools {