From 17c643f49974f40dcd03c71540460eaf75fba70b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 02:08:49 +0000 Subject: [PATCH] Bump toml from 0.8.23 to 0.9.9+spec-1.0.0 Bumps [toml](https://github.com/toml-rs/toml) from 0.8.23 to 0.9.9+spec-1.0.0. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.23...toml-v0.9.9) --- updated-dependencies: - dependency-name: toml dependency-version: 0.9.9+spec-1.0.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 62 ++++++++++++++++++++++++++++++++++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 56 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f172943f2a..42c1a6b00e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4831,6 +4831,15 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_spanned" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" +dependencies = [ + "serde_core", +] + [[package]] name = "serde_urlencoded" version = "0.7.1" @@ -5084,7 +5093,7 @@ dependencies = [ "thiserror 2.0.17", "tokio", "tokio-rustls", - "toml 0.8.23", + "toml 0.9.9+spec-1.0.0", "tracing", "tracing-subscriber", "unicode-width 0.2.2", @@ -5913,7 +5922,7 @@ dependencies = [ "tokio-rustls-acme", "tokio-stream", "tokio-util", - "toml 0.8.23", + "toml 0.9.9+spec-1.0.0", "tower-http", "tracing", "tracing-subscriber", @@ -6592,11 +6601,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" dependencies = [ "serde", - "serde_spanned", - "toml_datetime", + "serde_spanned 0.6.9", + "toml_datetime 0.6.11", "toml_edit 0.22.27", ] +[[package]] +name = "toml" +version = "0.9.9+spec-1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb5238e643fc34a1d5d7e753e1532a91912d74b63b92b3ea51fde8d1b7bc79dd" +dependencies = [ + "indexmap 2.12.0", + "serde_core", + "serde_spanned 1.0.4", + "toml_datetime 0.7.4+spec-1.0.0", + "toml_parser", + "toml_writer", + "winnow 0.7.13", +] + [[package]] name = "toml_datetime" version = "0.6.11" @@ -6606,6 +6630,15 @@ dependencies = [ "serde", ] +[[package]] +name = "toml_datetime" +version = "0.7.4+spec-1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe3cea6b2aa3b910092f6abd4053ea464fab5f9c170ba5e9a6aead16ec4af2b6" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" version = "0.19.15" @@ -6613,7 +6646,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ "indexmap 2.12.0", - "toml_datetime", + "toml_datetime 0.6.11", "winnow 0.5.40", ] @@ -6625,18 +6658,33 @@ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ "indexmap 2.12.0", "serde", - "serde_spanned", - "toml_datetime", + "serde_spanned 0.6.9", + "toml_datetime 0.6.11", "toml_write", "winnow 0.7.13", ] +[[package]] +name = "toml_parser" +version = "1.0.5+spec-1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c03bee5ce3696f31250db0bbaff18bc43301ce0e8db2ed1f07cbb2acf89984c" +dependencies = [ + "winnow 0.7.13", +] + [[package]] name = "toml_write" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" +[[package]] +name = "toml_writer" +version = "1.0.5+spec-1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9cd6190959dce0994aa8970cd32ab116d1851ead27e866039acaf2524ce44fa" + [[package]] name = "totp-rs" version = "5.7.0" diff --git a/Cargo.toml b/Cargo.toml index 2ad9bd23ea..6645092ab7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -160,7 +160,7 @@ bs58 = "0.4" urlencoding = "2" parking_lot = "0.12" indexmap = { version = "2.2", features = ["serde"] } -toml = "0.8" +toml = "0.9" bitflags = { version = "2", features = ["serde"] } enum-iterator = "2" tempfile = "3.5"