From 1ad1b7cb1712abbbd92240084f87eb418c3fe1db Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Mon, 10 Jul 2023 14:16:24 +0200 Subject: [PATCH] revert typed builder version (#1357) --- libafl/Cargo.toml | 2 +- libafl_sugar/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index e90054d1c9..eb5e87d9df 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -71,7 +71,7 @@ postcard = { version = "1.0", features = ["alloc"] } # no_std compatible serde s bincode = {version = "1.3", optional = true } c2rust-bitfields = { version = "0.17", features = ["no_std"] } num_enum = { version = "0.6", default-features = false } -typed-builder = "0.15" # Implement the builder pattern at compiletime +typed-builder = "0.14" # 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"] } backtrace = {version = "0.3", optional = true} # Used to get the stacktrace in StacktraceObserver diff --git a/libafl_sugar/Cargo.toml b/libafl_sugar/Cargo.toml index c8da7a70d5..f184b28ec2 100644 --- a/libafl_sugar/Cargo.toml +++ b/libafl_sugar/Cargo.toml @@ -31,7 +31,7 @@ libafl = { path = "../libafl", version = "0.10.1" } libafl_targets = { path = "../libafl_targets", version = "0.10.1" } libafl_qemu = { path = "../libafl_qemu", version = "0.10.1" } -typed-builder = "0.15" # Implement the builder pattern at compiletime +typed-builder = "0.14" # Implement the builder pattern at compiletime pyo3 = { version = "0.18.3", optional = true } log = "0.4.17"