From 3e0e753e9f371ceaced4d2a1a9cac1edcba07ef2 Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Tue, 11 Jul 2023 11:31:37 +0200 Subject: [PATCH] Update typed_builder to fix no_std (#1360) --- 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 eb5e87d9df..e84a53d57d 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.14" # Implement the builder pattern at compiletime +typed-builder = "0.15.1" # 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 f184b28ec2..3384c16cb4 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.14" # Implement the builder pattern at compiletime +typed-builder = "0.15.1" # Implement the builder pattern at compiletime pyo3 = { version = "0.18.3", optional = true } log = "0.4.17"