From ddb703e2a8e26546d2d83d3021dade7456069316 Mon Sep 17 00:00:00 2001 From: Stephan Fitzpatrick Date: Fri, 14 Nov 2025 06:05:26 +0000 Subject: [PATCH] fix: add postgres-native-tls dependency to windmill-api The TLS connector fix requires postgres-native-tls to be available as a dependency in windmill-api. This was already in the workspace but not explicitly added to the windmill-api crate dependencies. --- backend/windmill-api/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/windmill-api/Cargo.toml b/backend/windmill-api/Cargo.toml index 34cb7adfe9..7b8888b38e 100644 --- a/backend/windmill-api/Cargo.toml +++ b/backend/windmill-api/Cargo.toml @@ -94,6 +94,7 @@ tempfile.workspace = true tokio-util.workspace = true tokio-tar.workspace = true tokio-postgres.workspace = true +postgres-native-tls.workspace = true hmac.workspace = true cookie.workspace = true sha2.workspace = true