From 27c735cf790c4c2e843845aad5f48d147128e357 Mon Sep 17 00:00:00 2001 From: Radical Date: Mon, 28 Apr 2025 23:42:11 +0200 Subject: [PATCH] deps: add required features to sqlx --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e10a3ac..5b4c452 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] actix-web = "4.10" serde = { version = "1.0.219", features = ["derive"] } -sqlx = "0.8" +sqlx = { version = "0.8", features = ["runtime-tokio", "tls-native-tls", "postgres"] } toml = "0.8.21" url = { version = "2.5.4", features = ["serde"] }