Upgrade `cargo_toml` to 0.19.2 (#2859)

This commit is contained in:
acheron 2024-03-20 02:36:39 +01:00 committed by GitHub
parent cc15435e4d
commit b83d5fd64b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 31 additions and 6 deletions

31
Cargo.lock generated
View File

@ -983,12 +983,12 @@ dependencies = [
[[package]]
name = "cargo_toml"
version = "0.15.3"
version = "0.19.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
checksum = "a98356df42a2eb1bd8f1793ae4ee4de48e384dd974ce5eac8eee802edb7492be"
dependencies = [
"serde",
"toml 0.7.8",
"toml 0.8.2",
]
[[package]]
@ -5121,6 +5121,18 @@ dependencies = [
"toml_edit 0.19.15",
]
[[package]]
name = "toml"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit 0.20.2",
]
[[package]]
name = "toml_datetime"
version = "0.6.5"
@ -5143,6 +5155,19 @@ dependencies = [
"winnow",
]
[[package]]
name = "toml_edit"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
dependencies = [
"indexmap 2.0.2",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
[[package]]
name = "toml_edit"
version = "0.21.0"

View File

@ -15,7 +15,7 @@ path = "src/anchor/main.rs"
[dependencies]
anyhow = "1.0.32"
cfg-if = "1.0.0"
cargo_toml = "0.15.3"
cargo_toml = "0.19.2"
clap = { version = "4.2.4", features = ["derive"] }
dirs = "4.0.0"
once_cell = "1.8.0"

View File

@ -22,7 +22,7 @@ anchor-lang = { path = "../lang", version = "0.29.0" }
anyhow = "1.0.32"
base64 = "0.21"
bincode = "1.3.3"
cargo_toml = "0.15.3"
cargo_toml = "0.19.2"
chrono = "0.4.19"
clap = { version = "4.2.4", features = ["derive"] }
dirs = "4.0"

View File

@ -35,4 +35,4 @@ syn = { version = "1", features = ["full", "extra-traits", "parsing"] }
thiserror = "1"
# `idl-build` feature only
cargo_toml = { version = "0.15", optional = true }
cargo_toml = { version = "0.19", optional = true }