From 62f64ec06d230cd49682925f06b79a9f32ee7635 Mon Sep 17 00:00:00 2001 From: Artem Borovik Date: Tue, 5 May 2026 12:32:34 +0300 Subject: [PATCH] Disable default features in tokio-postgres --- crates/client_async/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/client_async/Cargo.toml b/crates/client_async/Cargo.toml index 4525ca86..49e70ff3 100644 --- a/crates/client_async/Cargo.toml +++ b/crates/client_async/Cargo.toml @@ -25,7 +25,7 @@ cornucopia_client_core = { path = "../client_core", version = "0.4.0" } async-trait = "0.1.63" # rust-postgres interaction -tokio-postgres = "0.7.7" +tokio-postgres = { version = "0.7.7", default-features = false } # connection pooling deadpool-postgres = { version = "0.12.1", optional = true }