diff --git a/Cargo.lock b/Cargo.lock index 4b7df94ea..9a101e2d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1711,7 +1711,7 @@ dependencies = [ "packsquash", "serde_path_to_error", "tokio", - "toml 0.8.0", + "toml 0.8.1", "winapi", "winapi-util", "winresource", @@ -2731,14 +2731,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c226a7bba6d859b63c92c4b4fe69c5b6b72d0cb897dbc8e6012298e6154cb56e" +checksum = "1bc1433177506450fe920e46a4f9812d0c211f5dd556da10e731a0a3dfa151f0" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.20.0", + "toml_edit 0.20.1", ] [[package]] @@ -2765,9 +2765,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.20.0" +version = "0.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ff63e60a958cefbb518ae1fd6566af80d9d4be430a33f3723dfc47d1d411d95" +checksum = "ca676d9ba1a322c1b64eb8045a5ec5c0cfb0c9d08e15e9ff622589ad5221c8fe" dependencies = [ "indexmap 2.0.0", "serde", diff --git a/packages/packsquash_cli/Cargo.toml b/packages/packsquash_cli/Cargo.toml index 832201c0a..b329891fb 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.0", default-features = false, features = ["parse"] } +toml = { version = "0.8.1", default-features = false, features = ["parse"] } tokio = { version = "1.32.0", default-features = false, features = ["time"] }