From 0d8e67c4df63b4982d7169ec9487b230a6aff730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Gari=C3=A9py?= Date: Wed, 3 Jan 2024 10:05:06 -0500 Subject: [PATCH] Upgrade deadpool. --- Cargo.lock | 4 ++-- crates/client_async/Cargo.toml | 2 +- examples/auto_build/Cargo.toml | 2 +- examples/basic_async/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a7fe66f1..4e958885 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -581,9 +581,9 @@ dependencies = [ [[package]] name = "deadpool-postgres" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40b75ba49590d27f677d3bebaf76cd15889ca8b308bc7ba99bfa25f1d7269c13" +checksum = "bda39fa1cfff190d8924d447ad04fd22772c250438ca5ce1dfb3c80621c05aaa" dependencies = [ "deadpool", "tokio", diff --git a/crates/client_async/Cargo.toml b/crates/client_async/Cargo.toml index ba0a3a7e..b43508cb 100644 --- a/crates/client_async/Cargo.toml +++ b/crates/client_async/Cargo.toml @@ -28,4 +28,4 @@ async-trait = "0.1.63" tokio-postgres = "0.7.7" # connection pooling -deadpool-postgres = { version = "0.11.0", optional = true } +deadpool-postgres = { version = "0.12.1", optional = true } diff --git a/examples/auto_build/Cargo.toml b/examples/auto_build/Cargo.toml index dc925e2c..9c285393 100644 --- a/examples/auto_build/Cargo.toml +++ b/examples/auto_build/Cargo.toml @@ -19,7 +19,7 @@ futures = "0.3.25" tokio-postgres = "0.7.7" postgres-types = "0.2.4" ## Connection pooling -deadpool-postgres = "0.11.0" +deadpool-postgres = "0.12.1" [build-dependencies] # Cornucopia library to automatically diff --git a/examples/basic_async/Cargo.toml b/examples/basic_async/Cargo.toml index ed6463d9..2dc6ccaf 100644 --- a/examples/basic_async/Cargo.toml +++ b/examples/basic_async/Cargo.toml @@ -17,4 +17,4 @@ futures = "0.3.25" tokio-postgres = "0.7.7" postgres-types = { version = "0.2.4", features = ["derive"] } ## Connection pooling -deadpool-postgres = "0.11.0" +deadpool-postgres = "0.12.1"