From b7665b209aa869a8b4831a86cff2a0a2b4b00a7b Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Thu, 22 Jun 2023 23:20:46 +0200 Subject: [PATCH] Fix CI (#2054) --- examples/diesel-async-postgres/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/diesel-async-postgres/Cargo.toml b/examples/diesel-async-postgres/Cargo.toml index 86bcc3de..124ec126 100644 --- a/examples/diesel-async-postgres/Cargo.toml +++ b/examples/diesel-async-postgres/Cargo.toml @@ -9,7 +9,7 @@ axum = { path = "../../axum" } axum-macros = { path = "../../axum-macros" } bb8 = "0.8" diesel = "2" -diesel-async = { version = "0.2", features = ["postgres", "bb8"] } +diesel-async = { version = "0.3", features = ["postgres", "bb8"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1" tokio = { version = "1.0", features = ["full"] }