From d02d03a37be17bdffde73aa18e9d3cdda96febc9 Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Wed, 31 Jul 2024 03:14:52 +0000 Subject: [PATCH] Update Rust crate toml_edit to 0.22.18 --- Cargo.lock | 47 +++++++++-------------------------------- cargo-guppy/Cargo.toml | 2 +- tools/hakari/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 39 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 38f75e35fd1a..7bb5ed24bfa6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -353,7 +353,7 @@ dependencies = [ "tempfile", "time", "toml 0.8.16", - "toml_edit 0.22.17", + "toml_edit", "tracing", "tracing-chrome", "tracing-subscriber", @@ -446,7 +446,7 @@ dependencies = [ "pathdiff", "serde", "serde_json", - "toml_edit 0.17.1", + "toml_edit", ] [[package]] @@ -2289,7 +2289,7 @@ dependencies = [ "tabular", "target-spec", "toml 0.5.11", - "toml_edit 0.17.1", + "toml_edit", "twox-hash", ] @@ -2803,15 +2803,6 @@ dependencies = [ "minimal-lexical", ] -[[package]] -name = "nom8" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" -dependencies = [ - "memchr", -] - [[package]] name = "normpath" version = "1.1.1" @@ -4035,47 +4026,29 @@ checksum = "81967dd0dd2c1ab0bc3468bd7caecc32b8a4aa47d0c8c695d8c2b2108168d62c" dependencies = [ "serde", "serde_spanned", - "toml_datetime 0.6.7", - "toml_edit 0.22.17", + "toml_datetime", + "toml_edit", ] [[package]] name = "toml_datetime" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5" - -[[package]] -name = "toml_datetime" -version = "0.6.7" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8fb9f64314842840f1d940ac544da178732128f1c78c21772e876579e0da1db" +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a34cc558345efd7e88b9eda9626df2138b80bb46a7606f695e751c892bc7dac6" -dependencies = [ - "indexmap 1.9.3", - "itertools 0.10.5", - "nom8", - "toml_datetime 0.5.1", -] - -[[package]] -name = "toml_edit" -version = "0.22.17" +version = "0.22.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d9f8729f5aea9562aac1cc0441f5d6de3cff1ee0c5d67293eeca5eb36ee7c16" +checksum = "1490595c74d930da779e944f5ba2ecdf538af67df1a9848cbd156af43c1b7cf0" dependencies = [ "indexmap 2.2.6", "serde", "serde_spanned", - "toml_datetime 0.6.7", + "toml_datetime", "winnow", ] diff --git a/cargo-guppy/Cargo.toml b/cargo-guppy/Cargo.toml index cb478fcf0706..f8e929452fc4 100644 --- a/cargo-guppy/Cargo.toml +++ b/cargo-guppy/Cargo.toml @@ -18,5 +18,5 @@ itertools = "0.12.1" pathdiff = { version = "0.2.1", features = ["camino"] } serde = { version = "1.0.204", features = ["derive"] } serde_json = "1.0.117" -toml_edit = "0.17.1" +toml_edit = "0.22.18" guppy-workspace-hack.workspace = true diff --git a/tools/hakari/Cargo.toml b/tools/hakari/Cargo.toml index 4a8fc09e0f63..672380a62dab 100644 --- a/tools/hakari/Cargo.toml +++ b/tools/hakari/Cargo.toml @@ -42,7 +42,7 @@ serde = { version = "1.0.204", features = ["derive"], optional = true } tabular = { version = "0.2.0", features = ["ansi-cell"], optional = true } target-spec = { version = "3.2.0", path = "../../target-spec" } toml = { version = "0.5.11", optional = true } -toml_edit = "0.17.1" +toml_edit = "0.22.18" twox-hash = { version = "1.6.3", default-features = false } guppy-workspace-hack.workspace = true