From 777999f22050ec7114c9ba0f2c830c0a135250ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Aug 2025 01:26:10 +0000 Subject: [PATCH] chore(deps): bump toml from 0.8.23 to 0.9.4 Bumps [toml](https://github.com/toml-rs/toml) from 0.8.23 to 0.9.4. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.23...toml-v0.9.4) --- updated-dependencies: - dependency-name: toml dependency-version: 0.9.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 36 +++++++++++++++--------------------- crates/core/Cargo.toml | 2 +- crates/fdev/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b24223d61..0ef0d58fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4439,9 +4439,9 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.9" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83" dependencies = [ "serde", ] @@ -5281,45 +5281,42 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.23" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" +checksum = "41ae868b5a0f67631c14589f7e250c1ea2c574ee5ba21c6c8dd4b1485705a5a1" dependencies = [ "indexmap 2.9.0", "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_parser", + "toml_writer", + "winnow", ] [[package]] name = "toml_datetime" -version = "0.6.11" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" +checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3" dependencies = [ "serde", ] [[package]] -name = "toml_edit" -version = "0.22.27" +name = "toml_parser" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" +checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30" dependencies = [ - "indexmap 2.9.0", - "serde", - "serde_spanned", - "toml_datetime", - "toml_write", "winnow", ] [[package]] -name = "toml_write" -version = "0.1.2" +name = "toml_writer" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" +checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64" [[package]] name = "tonic" @@ -6540,9 +6537,6 @@ name = "winnow" version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd" -dependencies = [ - "memchr", -] [[package]] name = "winreg" diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index dcba597c0..f30c8f319 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -50,7 +50,7 @@ rand = { features = ["small_rng"], workspace = true } redb = { optional = true, version = "2" } serde = { features = ["derive", "rc"], workspace = true } serde_json = { workspace = true } -toml = "0.8" +toml = "0.9" serde_with = { workspace = true } sqlx = { features = ["runtime-tokio-rustls", "sqlite"], optional = true, version = "0.8" } stretto = { features = ["async", "sync"], version = "0.8" } diff --git a/crates/fdev/Cargo.toml b/crates/fdev/Cargo.toml index 6223e0654..30d3c8214 100644 --- a/crates/fdev/Cargo.toml +++ b/crates/fdev/Cargo.toml @@ -30,7 +30,7 @@ tar = "0.4" thiserror = "2" tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros", "signal", "parking_lot", "process"] } tokio-tungstenite = "0.26.1" -toml = { version = "0.8", features = ["default", "preserve_order"] } +toml = { version = "0.9", features = ["default", "preserve_order"] } tracing = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] } xz2 = { version = "0.1", features = ["tokio"] }