From e637e187844cda1b3769496f4c534dc48a45d51b Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 2 Oct 2024 11:58:35 +0200 Subject: [PATCH 1/4] Upgrade dependencies --- omniqueue/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/omniqueue/Cargo.toml b/omniqueue/Cargo.toml index cb74a41..55ae213 100644 --- a/omniqueue/Cargo.toml +++ b/omniqueue/Cargo.toml @@ -16,13 +16,13 @@ aws-sdk-sqs = { version = "1.13.0", optional = true } azure_storage = { version = "0.20.0", optional = true } azure_storage_queues = { version = "0.20.0", optional = true } bb8 = { version = "0.8", optional = true } -bb8-redis = { version = "0.16.0", optional = true } +bb8-redis = { version = "0.17.0", optional = true } bytesize = "1.3.0" futures-util = { version = "0.3.28", default-features = false, features = ["async-await", "std"], optional = true } -google-cloud-googleapis = { version = "0.12.0", optional = true } -google-cloud-pubsub = { version = "0.24.0", optional = true } +google-cloud-googleapis = { version = "0.15.0", optional = true } +google-cloud-pubsub = { version = "0.29.1", optional = true } lapin = { version = "2", optional = true } -redis = { version = "0.26.1", features = ["tokio-comp", "tokio-native-tls-comp", "streams"], optional = true } +redis = { version = "0.27.2", features = ["tokio-comp", "tokio-native-tls-comp", "streams"], optional = true } serde = "1.0.196" serde_json = "1" svix-ksuid = { version = "0.8.0", optional = true } From ddb9c0a388c3d678f0aafe032b1d0ec5e942a009 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 2 Oct 2024 12:25:32 +0200 Subject: [PATCH 2/4] Fix a typo Found by crate-ci/typos. --- omniqueue/src/backends/redis/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omniqueue/src/backends/redis/mod.rs b/omniqueue/src/backends/redis/mod.rs index d6b9ffe..f38e20d 100644 --- a/omniqueue/src/backends/redis/mod.rs +++ b/omniqueue/src/backends/redis/mod.rs @@ -324,7 +324,7 @@ impl RedisBackendBuilder { } } - /// Set a custom [`RedisConnection`] mananager to use. + /// Set a custom [`RedisConnection`] manager to use. /// /// This method only makes sense to call if you have a custom connection /// manager implementation. For clustered redis, use From 4b493a7cf9ed13c679fc466dad70e3e45ba1f1e4 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 2 Oct 2024 12:25:48 +0200 Subject: [PATCH 3/4] ci: Upgrade crate-ci/typos --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 47ba49d..d899605 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -63,4 +63,4 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: crate-ci/typos@v1.18.0 + - uses: crate-ci/typos@v1.25.0 From ea5cab0ab111a2a00ecb9277e5279218f8ee5f5e Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 2 Oct 2024 12:26:10 +0200 Subject: [PATCH 4/4] ci: Upgrade Swatinem/rust-cache --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d899605..cd3ae9e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -39,7 +39,7 @@ jobs: - uses: taiki-e/install-action@cargo-hack - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - name: Clippy run: cargo hack --each-feature clippy --all-targets -- -D warnings