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"