From 5092993ada1e225fc4da33f6f3726e97352363c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 11:57:52 +0000 Subject: [PATCH] Update toml requirement from 0.9.10 to 1.1.2 Updates the requirements on [toml](https://github.com/toml-rs/toml) to permit the latest version. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.10...toml-v1.1.2) --- updated-dependencies: - dependency-name: toml dependency-version: 1.1.2+spec-1.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/libafl_libfuzzer/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a1f5bd4fa7..889a1c5b47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -155,7 +155,7 @@ static_assertions = "1.1.0" strum = "0.28.0" strum_macros = "0.28.0" tinyinst = "0.1.1" -toml = "0.9.10" # For parsing the injections toml file +toml = "1.1.2" # For parsing the injections toml file tuple_list = { version = "0.1.3" } typed-builder = "0.23.2" # Implement the builder pattern at compiletime typeid = "1.0.3" # Safe type_eq that doesn't rely on std specialization diff --git a/crates/libafl_libfuzzer/Cargo.toml b/crates/libafl_libfuzzer/Cargo.toml index 362488c03e..f6ad0a7a1b 100644 --- a/crates/libafl_libfuzzer/Cargo.toml +++ b/crates/libafl_libfuzzer/Cargo.toml @@ -24,7 +24,7 @@ include = [ [build-dependencies] cc = "1.2.53" rustversion = "1.0.22" -toml = { version = "0.9.10", features = ["preserve_order"] } +toml = { version = "1.1.2", features = ["preserve_order"] } which = "8.0.2" libafl_build = { workspace = true }