aws: Update to test-with 0.14

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1864>
This commit is contained in:
Sebastian Dröge 2024-10-20 21:20:37 +03:00 committed by GStreamer Marge Bot
parent b43a778a8e
commit d057488a20
3 changed files with 13 additions and 16 deletions

View file

@ -384,8 +384,7 @@ outdated:
script: script:
- cargo update --color=always - cargo update --color=always
# Ignore bitstream-io until we can update MSRV to 1.80 # Ignore bitstream-io until we can update MSRV to 1.80
# Ignore test-with until we can update MSRV to 1.77 - cargo outdated --color=always --root-deps-only --exit-code 1 -v -i bitstream-io
- cargo outdated --color=always --root-deps-only --exit-code 1 -v -i bitstream-io -i test-with
coverage: coverage:
allow_failure: true allow_failure: true

24
Cargo.lock generated
View file

@ -5273,27 +5273,25 @@ dependencies = [
] ]
[[package]] [[package]]
name = "proc-macro-error" name = "proc-macro-error-attr2"
version = "1.0.4" version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
dependencies = [ dependencies = [
"proc-macro-error-attr",
"proc-macro2", "proc-macro2",
"quote 1.0.37", "quote 1.0.37",
"syn 1.0.109",
"version_check",
] ]
[[package]] [[package]]
name = "proc-macro-error-attr" name = "proc-macro-error2"
version = "1.0.4" version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
dependencies = [ dependencies = [
"proc-macro-error-attr2",
"proc-macro2", "proc-macro2",
"quote 1.0.37", "quote 1.0.37",
"version_check", "syn 2.0.82",
] ]
[[package]] [[package]]
@ -6658,11 +6656,11 @@ dependencies = [
[[package]] [[package]]
name = "test-with" name = "test-with"
version = "0.12.6" version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3a0c1b477619de2a1bf72990195561a06f7b68bbf272cea676236ad7cfb9e8" checksum = "c68b467eef3b91443aaf01fee27fa016ea346d8c5b4ea1b85d0bd2375fa4c72f"
dependencies = [ dependencies = [
"proc-macro-error", "proc-macro-error2",
"proc-macro2", "proc-macro2",
"quote 1.0.37", "quote 1.0.37",
"regex", "regex",

View file

@ -40,7 +40,7 @@ chrono = { version = "0.4", features = [ "alloc" ] }
env_logger = "0.11" env_logger = "0.11"
gst-check = { workspace = true, features = ["v1_18"] } gst-check = { workspace = true, features = ["v1_18"] }
rand = "0.8" rand = "0.8"
test-with = { version = "0.12", default-features = false } test-with = { version = "0.14", default-features = false }
[lib] [lib]
name = "gstaws" name = "gstaws"