From 9efe5984441d0bb383445df02e25ed66bc84d960 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 10:13:59 +0000 Subject: [PATCH] Bump toml from 0.8.9 to 0.8.10 (#3660) Bumps [toml](https://github.com/toml-rs/toml) from 0.8.9 to 0.8.10. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.9...toml-v0.8.10) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 21 ++++++++++++++++----- tests/tester/Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 026761500d..a523482d32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -592,7 +592,7 @@ dependencies = [ "serde_repr", "serde_yaml", "time 0.3.34", - "toml 0.8.9", + "toml 0.8.10", ] [[package]] @@ -2617,7 +2617,7 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" dependencies = [ - "toml_edit", + "toml_edit 0.21.1", ] [[package]] @@ -3584,14 +3584,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.9" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6a4b9e8023eb94392d3dca65d717c53abc5dad49c07cb65bb8fcd87115fa325" +checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.22.4", ] [[package]] @@ -3608,6 +3608,17 @@ name = "toml_edit" version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +dependencies = [ + "indexmap 2.2.2", + "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", "serde", diff --git a/tests/tester/Cargo.toml b/tests/tester/Cargo.toml index d5a87a4a1c..a96aded9f2 100644 --- a/tests/tester/Cargo.toml +++ b/tests/tester/Cargo.toml @@ -25,7 +25,7 @@ once_cell.workspace = true colored.workspace = true rustc-hash = { workspace = true, features = ["std"] } rayon = "1.8.1" -toml = "0.8.9" +toml = "0.8.10" color-eyre = "0.6.2" phf = { workspace = true, features = ["macros"] } comfy-table = "7.1.0"