From d057488a2065617b2feee3889a491e91e0327153 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 20 Oct 2024 21:20:37 +0300 Subject: [PATCH] aws: Update to test-with 0.14 Part-of: --- .gitlab-ci.yml | 3 +-- Cargo.lock | 24 +++++++++++------------- net/aws/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6e831faf..36995735 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -384,8 +384,7 @@ outdated: script: - cargo update --color=always # 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 -i test-with + - cargo outdated --color=always --root-deps-only --exit-code 1 -v -i bitstream-io coverage: allow_failure: true diff --git a/Cargo.lock b/Cargo.lock index d53867f3..1fbf82d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5273,27 +5273,25 @@ dependencies = [ ] [[package]] -name = "proc-macro-error" -version = "1.0.4" +name = "proc-macro-error-attr2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" dependencies = [ - "proc-macro-error-attr", "proc-macro2", "quote 1.0.37", - "syn 1.0.109", - "version_check", ] [[package]] -name = "proc-macro-error-attr" -version = "1.0.4" +name = "proc-macro-error2" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" dependencies = [ + "proc-macro-error-attr2", "proc-macro2", "quote 1.0.37", - "version_check", + "syn 2.0.82", ] [[package]] @@ -6658,11 +6656,11 @@ dependencies = [ [[package]] name = "test-with" -version = "0.12.6" +version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3a0c1b477619de2a1bf72990195561a06f7b68bbf272cea676236ad7cfb9e8" +checksum = "c68b467eef3b91443aaf01fee27fa016ea346d8c5b4ea1b85d0bd2375fa4c72f" dependencies = [ - "proc-macro-error", + "proc-macro-error2", "proc-macro2", "quote 1.0.37", "regex", diff --git a/net/aws/Cargo.toml b/net/aws/Cargo.toml index 866a3a0f..375ba99f 100644 --- a/net/aws/Cargo.toml +++ b/net/aws/Cargo.toml @@ -40,7 +40,7 @@ chrono = { version = "0.4", features = [ "alloc" ] } env_logger = "0.11" gst-check = { workspace = true, features = ["v1_18"] } rand = "0.8" -test-with = { version = "0.12", default-features = false } +test-with = { version = "0.14", default-features = false } [lib] name = "gstaws"