From d21502173e53c34b1111e5831a0b75e1ab71ce59 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 17 Mar 2026 21:53:06 +0000 Subject: [PATCH] fix(deps): update rust crate toml to v1 --- Cargo.lock | 42 ++++++++++++++++++++++++++++--------- crates/fuuka-bot/Cargo.toml | 2 +- 2 files changed, 33 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d468ab..f3cff4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1098,7 +1098,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -1404,7 +1404,7 @@ dependencies = [ "time", "tl", "tokio", - "toml", + "toml 1.0.6+spec-1.1.0", "tower", "tower-http", "tracing", @@ -2771,7 +2771,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -3732,7 +3732,7 @@ dependencies = [ "ruma-identifiers-validation", "serde", "syn 2.0.117", - "toml", + "toml 0.9.12+spec-1.1.0", ] [[package]] @@ -3783,7 +3783,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -3840,7 +3840,7 @@ dependencies = [ "security-framework", "security-framework-sys", "webpki-root-certs", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -4382,7 +4382,7 @@ dependencies = [ "getrandom 0.4.1", "once_cell", "rustix", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -4585,11 +4585,24 @@ 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", + "winnow", +] + +[[package]] +name = "toml" +version = "1.0.6+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc" dependencies = [ "indexmap", "serde_core", "serde_spanned", - "toml_datetime", + "toml_datetime 1.0.1+spec-1.1.0", "toml_parser", "toml_writer", "winnow", @@ -4604,6 +4617,15 @@ dependencies = [ "serde_core", ] +[[package]] +name = "toml_datetime" +version = "1.0.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b320e741db58cac564e26c607d3cc1fdc4a88fd36c879568c07856ed83ff3e9" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" version = "0.23.10+spec-1.0.0" @@ -4611,7 +4633,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" dependencies = [ "indexmap", - "toml_datetime", + "toml_datetime 0.7.5+spec-1.1.0", "toml_parser", "winnow", ] @@ -5151,7 +5173,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] diff --git a/crates/fuuka-bot/Cargo.toml b/crates/fuuka-bot/Cargo.toml index 6f044ca..2194802 100644 --- a/crates/fuuka-bot/Cargo.toml +++ b/crates/fuuka-bot/Cargo.toml @@ -53,7 +53,7 @@ thiserror.workspace = true time = { version = "0.3.44", features = ["macros", "formatting", "serde"] } tl = "0.7.8" tokio = { version = "1.48.0", features = ["full"] } -toml = "0.9.12" +toml = "1.0.0" tower.workspace = true tower-http = { version = "0.6.8", features = [ "map-request-body",