From 70333aaf94ee5a80196cb73808ecb54386755492 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 15:18:14 +0200 Subject: [PATCH] Update typed-builder requirement from 0.16 to 0.18 (#2184) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- 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 288035e12b..fac0491680 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -160,7 +160,7 @@ c2rust-bitfields = { version = "0.18", features = ["no_std"] } ahash = { version = "0.8", default-features = false } # The hash function already used in hashbrown meminterval = { version = "0.4", features = ["serde"] } backtrace = { version = "0.3", optional = true } # Used to get the stacktrace in StacktraceObserver -typed-builder = { version = "0.16", optional = true } # Implement the builder pattern at compiletime +typed-builder = { version = "0.18", optional = true } # Implement the builder pattern at compiletime serde_json = { version = "1.0", optional = true, default-features = false, features = ["alloc"] } nix = { version = "0.27", optional = true } diff --git a/libafl_sugar/Cargo.toml b/libafl_sugar/Cargo.toml index f11446fc50..15d0e8a6a1 100644 --- a/libafl_sugar/Cargo.toml +++ b/libafl_sugar/Cargo.toml @@ -37,7 +37,7 @@ libafl = { path = "../libafl", version = "0.12.0", features = ["adaptive_seriali libafl_bolts = { path = "../libafl_bolts", version = "0.12.0" } libafl_targets = { path = "../libafl_targets", version = "0.12.0" } -typed-builder = "0.16" # Implement the builder pattern at compiletime +typed-builder = "0.18" # Implement the builder pattern at compiletime pyo3 = { version = "0.18", optional = true } log = "0.4.20"