diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index acdd94c530..fea53675ae 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -69,7 +69,7 @@ erased-serde = { version = "0.3.21", default-features = false, features = ["allo postcard = { version = "1.0", features = ["alloc"] } # no_std compatible serde serialization fromat bincode = {version = "1.3", optional = true } c2rust-bitfields = { version = "0.17", features = ["no_std"] } -num_enum = { version = "0.5.7", default-features = false } +num_enum = { version = "0.6", default-features = false } typed-builder = "0.15" # Implement the builder pattern at compiletime ahash = { version = "0.8", default-features=false } # The hash function already used in hashbrown intervaltree = { version = "0.2.7", default-features = false, features = ["serde"] } diff --git a/libafl_qemu/Cargo.toml b/libafl_qemu/Cargo.toml index 7f1f4942fb..5a2c634bda 100644 --- a/libafl_qemu/Cargo.toml +++ b/libafl_qemu/Cargo.toml @@ -43,7 +43,7 @@ libafl_qemu_sys = { path = "./libafl_qemu_sys", version = "0.10.1" } serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib hashbrown = { version = "0.13", features = ["serde"] } # A faster hashmap, nostd compatible num-traits = "0.2" -num_enum = "0.5.7" +num_enum = "0.6" goblin = "0.6" libc = "0.2" strum = "0.25"