From 218944eebfb26b8b6427c5814c20e053569d8abe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:27:13 +0000 Subject: [PATCH] build(deps): bump deadpool from 0.12.3 to 0.13.0 Bumps [deadpool](https://github.com/deadpool-rs/deadpool) from 0.12.3 to 0.13.0. - [Changelog](https://github.com/deadpool-rs/deadpool/blob/main/release.toml) - [Commits](https://github.com/deadpool-rs/deadpool/compare/deadpool-v0.12.3...deadpool-v0.13.0) --- updated-dependencies: - dependency-name: deadpool dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ae238cf0fe..620476fc385 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2718,17 +2718,34 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b" dependencies = [ - "deadpool-runtime", + "deadpool-runtime 0.1.4", "lazy_static", "num_cpus", "tokio", ] +[[package]] +name = "deadpool" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "883466cb8db62725aee5f4a6011e8a5d42912b42632df32aad57fc91127c6e04" +dependencies = [ + "deadpool-runtime 0.3.1", + "num_cpus", + "tokio", +] + [[package]] name = "deadpool-runtime" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b" + +[[package]] +name = "deadpool-runtime" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2657f61fb1dd8bf37a8d51093cc7cee4e77125b22f7753f49b289f831bec2bae" dependencies = [ "tokio", ] @@ -2871,7 +2888,7 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13096fb8dae53f2d411c4b523bec85f45552ed3044a2ab4d85fb2092d9cb4f34" dependencies = [ - "deadpool", + "deadpool 0.12.3", "diesel", "futures-core", "futures-util", @@ -4005,7 +4022,7 @@ dependencies = [ "blake3 1.8.2", "chrono", "clap", - "deadpool", + "deadpool 0.13.0", "derive_more", "diesel", "diesel-async", @@ -9492,7 +9509,7 @@ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031" dependencies = [ "assert-json-diff", "base64 0.22.1", - "deadpool", + "deadpool 0.12.3", "futures 0.3.31", "http 1.4.0", "http-body-util", diff --git a/Cargo.toml b/Cargo.toml index 8a64e6dba59..9f375282202 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,7 +96,7 @@ strum = { version = "0.28", features = ["derive"] } syn = { version = "2.0.117", features = ["full"] } test-store = { path = "./store/test-store" } thiserror = "2.0.18" -deadpool = { version = "0.12", features = ["rt_tokio_1", "managed"] } +deadpool = { version = "0.13", features = ["rt_tokio_1", "managed"] } tokio = { version = "1.49.0", features = ["full"] } tokio-stream = { version = "0.1.18", features = ["sync"] } tokio-retry = "0.3.0"