From 477f7d68539344a9b00e0af3ce8feec063ce02aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 00:10:01 +0000 Subject: [PATCH] build(deps): bump bb8-redis from 0.17.0 to 0.18.0 Bumps [bb8-redis](https://github.com/djc/bb8) from 0.17.0 to 0.18.0. - [Release notes](https://github.com/djc/bb8/releases) - [Commits](https://github.com/djc/bb8/commits) --- updated-dependencies: - dependency-name: bb8-redis dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 ++++----------------- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cda062d..2fb6cc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ version = "0.1.0" dependencies = [ "anyhow", "axum", - "bb8 0.9.0", + "bb8", "bb8-redis", "dotenvy", "envy", @@ -190,18 +190,6 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" -[[package]] -name = "bb8" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d89aabfae550a5c44b43ab941844ffcd2e993cb6900b342debf59e9ea74acdb8" -dependencies = [ - "async-trait", - "futures-util", - "parking_lot", - "tokio", -] - [[package]] name = "bb8" version = "0.9.0" @@ -215,12 +203,11 @@ dependencies = [ [[package]] name = "bb8-redis" -version = "0.17.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1781f22daa0ae97d934fdf04a5c66646f154a164c4bdc157ec8d3c11166c05cc" +checksum = "8416aa3639520757fd0ed659c8c12f7cd9f0ed638fa0cdd52a13d3b19946df2a" dependencies = [ - "async-trait", - "bb8 0.8.6", + "bb8", "redis 0.27.6", ] diff --git a/Cargo.toml b/Cargo.toml index 45cda9c..a8c0472 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" anyhow = "1.0" axum = "0.7.9" bb8 = "0.9.0" -bb8-redis = "0.17.0" +bb8-redis = "0.18.0" dotenvy = "0.15.7" envy = "0.4.2" metrics = "0.24.1"