From 09b021154c483ee1c47db6180cb9027078d70b65 Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Tue, 6 Feb 2024 04:12:07 +0000 Subject: [PATCH] Update Rust crate toml_edit to 0.22.4 --- Cargo.lock | 48 ++++++++++++++--------------------------- cargo-guppy/Cargo.toml | 2 +- tools/hakari/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 34 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c04214d591f..2a57edbd2ac8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,7 +436,7 @@ dependencies = [ "pathdiff", "serde", "serde_json", - "toml_edit 0.17.1", + "toml_edit 0.22.4", ] [[package]] @@ -2218,7 +2218,7 @@ dependencies = [ "tabular", "target-spec", "toml 0.5.11", - "toml_edit 0.17.1", + "toml_edit 0.22.4", "twox-hash", ] @@ -2703,15 +2703,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" @@ -3915,16 +3906,10 @@ checksum = "c6a4b9e8023eb94392d3dca65d717c53abc5dad49c07cb65bb8fcd87115fa325" dependencies = [ "serde", "serde_spanned", - "toml_datetime 0.6.5", + "toml_datetime", "toml_edit 0.21.1", ] -[[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.5" @@ -3934,18 +3919,6 @@ 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.20.7" @@ -3955,7 +3928,7 @@ dependencies = [ "indexmap 2.2.2", "serde", "serde_spanned", - "toml_datetime 0.6.5", + "toml_datetime", "winnow", ] @@ -3968,7 +3941,18 @@ dependencies = [ "indexmap 2.2.2", "serde", "serde_spanned", - "toml_datetime 0.6.5", + "toml_datetime", + "winnow", +] + +[[package]] +name = "toml_edit" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c9ffdf896f8daaabf9b66ba8e77ea1ed5ed0f72821b398aba62352e95062951" +dependencies = [ + "indexmap 2.2.2", + "toml_datetime", "winnow", ] diff --git a/cargo-guppy/Cargo.toml b/cargo-guppy/Cargo.toml index 8056b1ed56ba..a17386e98170 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.196", features = ["derive"] } serde_json = "1.0.113" -toml_edit = "0.17.1" +toml_edit = "0.22.4" guppy-workspace-hack.workspace = true diff --git a/tools/hakari/Cargo.toml b/tools/hakari/Cargo.toml index 739ec4345048..15f1505f85d4 100644 --- a/tools/hakari/Cargo.toml +++ b/tools/hakari/Cargo.toml @@ -42,7 +42,7 @@ serde = { version = "1.0.196", features = ["derive"], optional = true } tabular = { version = "0.2.0", features = ["ansi-cell"], optional = true } target-spec = { version = "3.1.0", path = "../../target-spec" } toml = { version = "0.5.11", optional = true } -toml_edit = "0.17.1" +toml_edit = "0.22.4" twox-hash = { version = "1.6.3", default-features = false } guppy-workspace-hack.workspace = true