From 5d246d65ff8a4b048b9aa416b99040f68fb72653 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 21:32:24 +1100 Subject: [PATCH] build(deps): Bump redis from 0.24.0 to 0.25.0 in /rust (#4073) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.24.0 to 0.25.0.
Release notes

Sourced from redis's releases.

v0.25.0

0.25.0 (2024-03-08)

Features

Changes

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=redis&package-manager=cargo&previous-version=0.24.0&new-version=0.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- rust/Cargo.lock | 34 +++++++++++++++++++++++++++++----- rust/relay/Cargo.toml | 2 +- rust/snownet-tests/Cargo.toml | 2 +- 3 files changed, 31 insertions(+), 7 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index b257fc4cd..9031a5733 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -195,6 +195,17 @@ dependencies = [ "futures-core", ] +[[package]] +name = "async-channel" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" +dependencies = [ + "concurrent-queue", + "event-listener 2.5.3", + "futures-core", +] + [[package]] name = "async-channel" version = "2.2.0" @@ -659,7 +670,7 @@ version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" dependencies = [ - "async-channel", + "async-channel 2.2.0", "async-lock 3.3.0", "async-task", "fastrand 2.0.1", @@ -1980,7 +1991,7 @@ dependencies = [ "phoenix-channel", "proptest", "rand 0.8.5", - "redis 0.24.0", + "redis 0.25.0", "secrecy", "serde", "sha2", @@ -2226,6 +2237,18 @@ version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" +[[package]] +name = "futures-time" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6404853a6824881fe5f7d662d147dc4e84ecd2259ba0378f272a71dab600758a" +dependencies = [ + "async-channel 1.9.0", + "async-io 1.13.0", + "futures-core", + "pin-project-lite", +] + [[package]] name = "futures-timer" version = "3.0.3" @@ -4882,13 +4905,14 @@ dependencies = [ [[package]] name = "redis" -version = "0.24.0" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c580d9cbbe1d1b479e8d67cf9daf6a62c957e6846048408b80b43ac3f6af84cd" +checksum = "3268dab7fe8f1d136b3c4367bc230383dc2c357f8e305ee898fa3beacddaf00d" dependencies = [ "async-trait", "bytes", "combine", + "futures-time", "futures-util", "itoa 1.0.10", "percent-encoding", @@ -5688,7 +5712,7 @@ dependencies = [ "hex", "pnet_packet", "rand 0.8.5", - "redis 0.24.0", + "redis 0.25.0", "redis-macros", "secrecy", "serde", diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index b749486fd..abfd791de 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -41,7 +41,7 @@ axum = { version = "0.7.3", default-features = false, features = ["http1", "toki backoff = "0.4" [dev-dependencies] -redis = { version = "0.24.0", default-features = false, features = ["tokio-comp"] } +redis = { version = "0.25.0", default-features = false, features = ["tokio-comp"] } difference = "2.0.0" [[test]] diff --git a/rust/snownet-tests/Cargo.toml b/rust/snownet-tests/Cargo.toml index bfd35c0d1..74d5c0354 100644 --- a/rust/snownet-tests/Cargo.toml +++ b/rust/snownet-tests/Cargo.toml @@ -12,7 +12,7 @@ futures = "0.3" hex = "0.4" pnet_packet = { version = "0.34" } rand = "0.8" -redis = { version = "0.24.0", default-features = false, features = ["tokio-comp"] } +redis = { version = "0.25.0", default-features = false, features = ["tokio-comp"] } redis-macros = "0.2.1" secrecy = { workspace = true } serde = { version = "1", features = ["derive"] }