From f1ddf36f2f4a9d70acb80e6dcef4496119c49ca5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 05:16:00 +0000 Subject: [PATCH] chore(deps): bump redis from 0.26.1 to 0.27.2 (#112) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 21 +++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3510cd..defd13f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1723,6 +1723,23 @@ name = "redis" version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e902a69d09078829137b4a5d9d082e0490393537badd7c91a3d69d14639e115f" +dependencies = [ + "arc-swap", + "combine", + "itoa", + "num-bigint", + "percent-encoding", + "ryu", + "sha1_smol", + "socket2", + "url", +] + +[[package]] +name = "redis" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7e86f5670bd8b028edfb240f0616cad620705b31ec389d55e4f3da2c38dcd48" dependencies = [ "arc-swap", "async-trait", @@ -1752,7 +1769,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41450c63946dd0c5014230b6294478f4a71b73c925f8f01075adbead3dd82634" dependencies = [ - "redis", + "redis 0.26.1", "redis-macros-derive", "serde", "serde_json", @@ -2847,7 +2864,7 @@ dependencies = [ "paste", "poise", "rand", - "redis", + "redis 0.27.2", "redis-macros", "regex", "reqwest", diff --git a/Cargo.toml b/Cargo.toml index d199796..f07c3ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ os_info = { version = "3.8.2", default-features = false } paste = "1.0.15" poise = { git = "https://github.com/serenity-rs/poise.git", branch = "serenity-next" } rand = "0.8.5" -redis = { version = "0.26.1", features = ["tokio-comp", "tokio-rustls-comp"] } +redis = { version = "0.27.2", features = ["tokio-comp", "tokio-rustls-comp"] } redis-macros = "0.4.0" regex = "1.10.6" reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls", "json", "brotli"] }