From 2e804621ecc59c096cc30766b7697996de92c301 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:39:26 +0000 Subject: [PATCH] build(deps): bump toml from 0.9.12+spec-1.1.0 to 1.0.3+spec-1.1.0 Bumps [toml](https://github.com/toml-rs/toml) from 0.9.12+spec-1.1.0 to 1.0.3+spec-1.1.0. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.12...toml-v1.0.3) --- updated-dependencies: - dependency-name: toml dependency-version: 1.0.3+spec-1.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 ++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6cd2082c..7b791e27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -248,7 +248,7 @@ dependencies = [ "tokio", "tokio-stream", "tokio-util", - "toml", + "toml 1.0.3+spec-1.1.0", "tracing", "tracing-chrome", "tracing-subscriber", @@ -409,7 +409,7 @@ checksum = "b30fa8254caad766fc03cb0ccae691e14bf3bd72bfff27f72802ce729551b3d6" dependencies = [ "pathdiff", "serde_core", - "toml", + "toml 0.9.12+spec-1.1.0", "winnow", ] @@ -1190,7 +1190,7 @@ dependencies = [ "serde", "serde_derive", "sysinfo", - "toml", + "toml 0.9.12+spec-1.1.0", "uuid", ] @@ -1724,7 +1724,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36c791ecdf977c99f45f23280405d7723727470f6689a5e6dbf513ac547ae10d" dependencies = [ "serde", - "toml", + "toml 0.9.12+spec-1.1.0", ] [[package]] @@ -3095,11 +3095,25 @@ name = "toml" version = "0.9.12+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" +dependencies = [ + "serde_core", + "serde_spanned", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow", +] + +[[package]] +name = "toml" +version = "1.0.3+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7614eaf19ad818347db24addfa201729cf2a9b6fdfd9eb0ab870fcacc606c0c" dependencies = [ "indexmap", "serde_core", "serde_spanned", - "toml_datetime", + "toml_datetime 1.0.0+spec-1.1.0", "toml_parser", "toml_writer", "winnow", @@ -3114,6 +3128,15 @@ dependencies = [ "serde_core", ] +[[package]] +name = "toml_datetime" +version = "1.0.0+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_parser" version = "1.0.9+spec-1.1.0" diff --git a/Cargo.toml b/Cargo.toml index b17a805d..c928b438 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ tar = "0.4" tokio = { version = "1", features = ["macros", "fs", "process", "io-util", "signal", "time"] } tokio-util = "0.7" tokio-stream = "0.1" -toml = "0.9" +toml = "1.0" tracing = "0.1" tracing-chrome = "0.7" tracing-subscriber = { version = "0.3", features = ["env-filter"] }