Bump cargo_toml from 0.14.0 to 0.15.1 (#770)

This commit is contained in:
dependabot[bot] 2023-02-06 02:40:03 +00:00 committed by GitHub
parent a13c01b769
commit cb56770fac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 5 deletions

20
Cargo.lock generated
View file

@ -380,12 +380,12 @@ dependencies = [
[[package]] [[package]]
name = "cargo_toml" name = "cargo_toml"
version = "0.14.0" version = "0.15.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f1204fe51a1e56042b8ec31d6407547ecd18f596b66f470dadb9abd9be9c843" checksum = "189929343288eb08d1f418bfbc022a5bddc6889e4a8f8dfaf06035fd3adf6fed"
dependencies = [ dependencies = [
"serde", "serde",
"toml", "toml 0.7.1",
] ]
[[package]] [[package]]
@ -671,7 +671,7 @@ checksum = "e62abb876c07e4754fae5c14cafa77937841f01740637e17d78dc04352f32a5e"
dependencies = [ dependencies = [
"cc", "cc",
"rustc_version", "rustc_version",
"toml", "toml 0.5.11",
"vswhom", "vswhom",
"winreg", "winreg",
] ]
@ -2512,6 +2512,18 @@ dependencies = [
"serde", "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]] [[package]]
name = "toml_datetime" name = "toml_datetime"
version = "0.6.1" version = "0.6.1"

View file

@ -13,7 +13,7 @@ license = "GPL-3.0"
async-trait = "0.1.64" async-trait = "0.1.64"
binstalk-downloader = { version = "0.3.2", path = "../binstalk-downloader" } binstalk-downloader = { version = "0.3.2", path = "../binstalk-downloader" }
binstalk-types = { version = "0.2.0", path = "../binstalk-types" } 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"] } command-group = { version = "2.0.1", features = ["with-tokio"] }
compact_str = { version = "0.6.1", features = ["serde"] } compact_str = { version = "0.6.1", features = ["serde"] }
crates_io_api = { version = "0.8.1", default-features = false } crates_io_api = { version = "0.8.1", default-features = false }