From cb56770fac6e053a9dd3768ae7a469d96d4e88d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Feb 2023 02:40:03 +0000 Subject: [PATCH] Bump cargo_toml from 0.14.0 to 0.15.1 (#770) --- Cargo.lock | 20 ++++++++++++++++---- crates/binstalk/Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1671667e..96aa7eef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -380,12 +380,12 @@ dependencies = [ [[package]] name = "cargo_toml" -version = "0.14.0" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f1204fe51a1e56042b8ec31d6407547ecd18f596b66f470dadb9abd9be9c843" +checksum = "189929343288eb08d1f418bfbc022a5bddc6889e4a8f8dfaf06035fd3adf6fed" dependencies = [ "serde", - "toml", + "toml 0.7.1", ] [[package]] @@ -671,7 +671,7 @@ checksum = "e62abb876c07e4754fae5c14cafa77937841f01740637e17d78dc04352f32a5e" dependencies = [ "cc", "rustc_version", - "toml", + "toml 0.5.11", "vswhom", "winreg", ] @@ -2512,6 +2512,18 @@ dependencies = [ "serde", ] +[[package]] +name = "toml" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "772c1426ab886e7362aedf4abc9c0d1348a979517efedfc25862944d10137af0" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + [[package]] name = "toml_datetime" version = "0.6.1" diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 3262d695..a7a5707d 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -13,7 +13,7 @@ license = "GPL-3.0" async-trait = "0.1.64" binstalk-downloader = { version = "0.3.2", path = "../binstalk-downloader" } binstalk-types = { version = "0.2.0", path = "../binstalk-types" } -cargo_toml = "0.14.0" +cargo_toml = "0.15.1" command-group = { version = "2.0.1", features = ["with-tokio"] } compact_str = { version = "0.6.1", features = ["serde"] } crates_io_api = { version = "0.8.1", default-features = false }