From da63c14467dd55b1615ddbc7fc4f08c11c3df022 Mon Sep 17 00:00:00 2001 From: dayvejones <75860773+dayvejones@users.noreply.github.com> Date: Tue, 10 Dec 2024 10:36:47 +0700 Subject: [PATCH] examples: Upgrade bb8-postgres deps (#3072) --- examples/tokio-postgres/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tokio-postgres/Cargo.toml b/examples/tokio-postgres/Cargo.toml index e14520d2..7f3a9e9f 100644 --- a/examples/tokio-postgres/Cargo.toml +++ b/examples/tokio-postgres/Cargo.toml @@ -6,8 +6,8 @@ publish = false [dependencies] axum = { path = "../../axum" } -bb8 = "0.8.5" -bb8-postgres = "0.8.1" +bb8 = "0.9.0" +bb8-postgres = "0.9.0" tokio = { version = "1.0", features = ["full"] } tokio-postgres = "0.7.2" tracing = "0.1"