version-helper: Update to toml_edit 0.22

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1448>
This commit is contained in:
Sebastian Dröge 2024-02-06 09:16:43 +02:00
parent d25a222bf9
commit bb509bd537
2 changed files with 16 additions and 5 deletions

17
Cargo.lock generated
View file

@ -2749,7 +2749,7 @@ name = "gst-plugin-version-helper"
version = "0.8.0"
dependencies = [
"chrono",
"toml_edit",
"toml_edit 0.22.4",
]
[[package]]
@ -4885,7 +4885,7 @@ version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
dependencies = [
"toml_edit",
"toml_edit 0.21.1",
]
[[package]]
@ -6154,7 +6154,7 @@ dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
"toml_edit 0.21.1",
]
[[package]]
@ -6179,6 +6179,17 @@ dependencies = [
"winnow",
]
[[package]]
name = "toml_edit"
version = "0.22.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c9ffdf896f8daaabf9b66ba8e77ea1ed5ed0f72821b398aba62352e95062951"
dependencies = [
"indexmap 2.2.2",
"toml_datetime",
"winnow",
]
[[package]]
name = "tower-service"
version = "0.3.2"

View file

@ -10,8 +10,8 @@ license = "MIT"
homepage = "https://gstreamer.freedesktop.org"
keywords = ["gstreamer", "multimedia", "cargo"]
edition.workspace = true
rust-version = "1.67"
rust-version = "1.69"
[dependencies]
chrono = { version = "0.4.23", default-features = false, features = ["std", "clock"] }
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
toml_edit = { version = "0.22", default-features = false, features = ["parse"] }