From 35b307ed266a2729486edf21ceef0c78ce64602c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 21:56:05 +0000 Subject: [PATCH] build(deps): bump diesel-async from 0.7.4 to 0.8.0 Bumps [diesel-async](https://github.com/weiznich/diesel_async) from 0.7.4 to 0.8.0. - [Release notes](https://github.com/weiznich/diesel_async/releases) - [Changelog](https://github.com/weiznich/diesel_async/blob/main/CHANGELOG.md) - [Commits](https://github.com/weiznich/diesel_async/compare/v0.7.4...v0.8.0) --- updated-dependencies: - dependency-name: diesel-async dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 ++++++----- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a8654ea03f7..3564958fc0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2883,14 +2883,15 @@ dependencies = [ [[package]] name = "diesel-async" -version = "0.7.4" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13096fb8dae53f2d411c4b523bec85f45552ed3044a2ab4d85fb2092d9cb4f34" +checksum = "b95864e58597509106f1fddfe0600de7e589e1fddddd87f54eee0a49fd111bbc" dependencies = [ - "deadpool 0.12.3", + "deadpool 0.13.0", "diesel", "futures-core", "futures-util", + "pin-project-lite", "scoped-futures", "tokio", "tokio-postgres", @@ -5903,9 +5904,9 @@ dependencies = [ [[package]] name = "pin-project-lite" -version = "0.2.14" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" [[package]] name = "pin-utils" diff --git a/Cargo.toml b/Cargo.toml index b3c8a1e0a0c..179bef5b477 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ diesel = { version = "2.2.7", features = [ "chrono", "i-implement-a-third-party-backend-and-opt-into-breaking-changes", ] } -diesel-async = { version = "0.7.4", features = ["deadpool", "async-connection-wrapper", "tokio", "postgres"] } +diesel-async = { version = "0.8.0", features = ["deadpool", "async-connection-wrapper", "tokio", "postgres"] } diesel-derive-enum = { version = "2.1.0", features = ["postgres"] } diesel-dynamic-schema = { version = "0.2.3", features = ["postgres"] } diesel_derives = "2.3.7"