From aaee7d768ad3bc3486d2e07e1d887f24c2536c09 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 06:31:48 +0000 Subject: [PATCH] chore(deps): bump toml from 0.9.12+spec-1.1.0 to 1.0.0+spec-1.1.0 Bumps [toml](https://github.com/toml-rs/toml) from 0.9.12+spec-1.1.0 to 1.0.0+spec-1.1.0. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.12...toml-v1.0.0) --- updated-dependencies: - dependency-name: toml dependency-version: 1.0.0+spec-1.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 +++++++++++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 524bc056..cc0444fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8586,7 +8586,7 @@ dependencies = [ "serde_with", "swift-rs", "thiserror 2.0.18", - "toml 0.9.12+spec-1.1.0", + "toml 1.0.0+spec-1.1.0", "url", "urlpattern", "uuid", @@ -8954,6 +8954,21 @@ dependencies = [ "winnow 0.7.13", ] +[[package]] +name = "toml" +version = "1.0.0+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1d7e18e3dd1d31e0ee5e863a8091ffec2fcc271636586042452b656a22c8ee1" +dependencies = [ + "indexmap 2.12.0", + "serde_core", + "serde_spanned 1.0.4", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 0.7.13", +] + [[package]] name = "toml_datetime" version = "0.6.11" @@ -8972,6 +8987,15 @@ dependencies = [ "serde_core", ] +[[package]] +name = "toml_datetime" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" version = "0.19.15" diff --git a/Cargo.toml b/Cargo.toml index 885e60d2..2d812fd5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -86,7 +86,7 @@ thiserror = "2.0" # Core async runtime tokio = { version = "1", default-features = false, features = ["sync", "time", "macros"] } tokio-util = "0.7" -toml = "0.9" +toml = "1.0" tower = { version = "0.5", features = ["util"] } tower-http = { version = "0.6", features = ["trace", "cors", "timeout"] } tower-service = "0.3"