chore: Update to `proc-macro-crate` `v3.2.0`, deduplicate `toml_edit` and `winnow`

This commit is contained in:
TÖRÖK Attila 2024-08-27 16:21:38 +02:00
parent 713224c465
commit c930b0c77f
3 changed files with 15 additions and 35 deletions

46
Cargo.lock generated
View File

@ -3812,11 +3812,11 @@ dependencies = [
[[package]]
name = "proc-macro-crate"
version = "3.1.0"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
dependencies = [
"toml_edit 0.21.1",
"toml_edit",
]
[[package]]
@ -4316,7 +4316,7 @@ dependencies = [
"sys-locale",
"thiserror",
"tokio",
"toml_edit 0.22.17",
"toml_edit",
"tracing",
"tracing-appender",
"tracing-subscriber",
@ -4346,7 +4346,7 @@ dependencies = [
"tempfile",
"thiserror",
"tokio",
"toml_edit 0.22.17",
"toml_edit",
"tracing",
"url",
"urlencoding",
@ -5447,40 +5447,29 @@ dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit 0.22.17",
"toml_edit",
]
[[package]]
name = "toml_datetime"
version = "0.6.7"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8fb9f64314842840f1d940ac544da178732128f1c78c21772e876579e0da1db"
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
version = "0.21.1"
version = "0.22.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
dependencies = [
"indexmap",
"toml_datetime",
"winnow 0.5.40",
]
[[package]]
name = "toml_edit"
version = "0.22.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d9f8729f5aea9562aac1cc0441f5d6de3cff1ee0c5d67293eeca5eb36ee7c16"
checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d"
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
"winnow 0.6.13",
"winnow",
]
[[package]]
@ -6696,18 +6685,9 @@ dependencies = [
[[package]]
name = "winnow"
version = "0.5.40"
version = "0.6.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
dependencies = [
"memchr",
]
[[package]]
name = "winnow"
version = "0.6.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1"
checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
dependencies = [
"memchr",
]

View File

@ -42,7 +42,7 @@ wgpu = { workspace = true }
futures = { workspace = true }
chrono = { workspace = true }
fluent-templates = "0.10.1"
toml_edit = { version = "0.22.17", features = ["parse"] }
toml_edit = { version = "0.22.20", features = ["parse"] }
gilrs = "0.10"
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}

View File

@ -11,7 +11,7 @@ version.workspace = true
workspace = true
[dependencies]
toml_edit = { version = "0.22.17", features = ["parse"] }
toml_edit = { version = "0.22.20", features = ["parse"] }
url = { workspace = true }
tracing = { workspace = true }
thiserror = { workspace = true }