From c6f3c77c3d304369fccaf824c424d5e326c80b4a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 03:29:59 +0000 Subject: [PATCH] fix(deps): update rust crate toml to 0.8.2 --- Cargo.lock | 12 ++++++------ packages/packsquash_cli/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8a0a492e2..47c7d2b81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1701,7 +1701,7 @@ dependencies = [ "packsquash", "serde_path_to_error", "tokio", - "toml 0.8.1", + "toml 0.8.2", "winapi", "winapi-util", "winresource", @@ -2721,14 +2721,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bc1433177506450fe920e46a4f9812d0c211f5dd556da10e731a0a3dfa151f0" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.20.1", + "toml_edit 0.20.2", ] [[package]] @@ -2755,9 +2755,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.20.1" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca676d9ba1a322c1b64eb8045a5ec5c0cfb0c9d08e15e9ff622589ad5221c8fe" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" dependencies = [ "indexmap", "serde", diff --git a/packages/packsquash_cli/Cargo.toml b/packages/packsquash_cli/Cargo.toml index b329891fb..354d42c27 100644 --- a/packages/packsquash_cli/Cargo.toml +++ b/packages/packsquash_cli/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" packsquash = { path = "../packsquash", version = "0.4.0" } getopts = "0.2.21" -toml = { version = "0.8.1", default-features = false, features = ["parse"] } +toml = { version = "0.8.2", default-features = false, features = ["parse"] } tokio = { version = "1.32.0", default-features = false, features = ["time"] }