From de46011cc1743d6e518dc2066ff65607c1563d82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 15:08:17 +0000 Subject: [PATCH] chore(deps): bump toml from 0.9.12+spec-1.1.0 to 1.1.2+spec-1.1.0 Bumps [toml](https://github.com/toml-rs/toml) from 0.9.12+spec-1.1.0 to 1.1.2+spec-1.1.0. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.12...toml-v1.1.2) --- updated-dependencies: - dependency-name: toml dependency-version: 1.1.2+spec-1.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++++---- bin/ev-deployer/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a3f818d..310d4b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2972,7 +2972,7 @@ dependencies = [ "serde_json", "tempfile", "tokio", - "toml", + "toml 1.1.2+spec-1.1.0", ] [[package]] @@ -6624,7 +6624,7 @@ dependencies = [ "tar", "tokio", "tokio-stream", - "toml", + "toml 0.9.12+spec-1.1.0", "tracing", "url", "zstd", @@ -6705,7 +6705,7 @@ dependencies = [ "reth-stages-types", "reth-static-file-types", "serde", - "toml", + "toml 0.9.12+spec-1.1.0", "url", ] @@ -8027,7 +8027,7 @@ dependencies = [ "serde", "strum", "thiserror 2.0.18", - "toml", + "toml 0.9.12+spec-1.1.0", "tracing", "url", "vergen", @@ -10568,6 +10568,21 @@ dependencies = [ "winnow 0.7.15", ] +[[package]] +name = "toml" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee" +dependencies = [ + "indexmap 2.14.0", + "serde_core", + "serde_spanned", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 1.0.1", +] + [[package]] name = "toml_datetime" version = "0.7.5+spec-1.1.0" diff --git a/bin/ev-deployer/Cargo.toml b/bin/ev-deployer/Cargo.toml index cb49e7e..741684e 100644 --- a/bin/ev-deployer/Cargo.toml +++ b/bin/ev-deployer/Cargo.toml @@ -18,7 +18,7 @@ tokio = { workspace = true } clap = { workspace = true, features = ["derive", "env"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } -toml = "0.9" +toml = "1.1" eyre = { workspace = true } rand = { workspace = true }