From 18b361978505acab68a705b44759336db391bf13 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 15 Nov 2024 02:57:39 +0100 Subject: [PATCH] `core`: Apparently you still need the `postgres` feature on `diesel` --- acrate-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acrate-core/Cargo.toml b/acrate-core/Cargo.toml index 1f94d4f..d5b738a 100644 --- a/acrate-core/Cargo.toml +++ b/acrate-core/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -diesel = { version = "2.2.4", features = ["uuid"] } +diesel = { version = "2.2.4", features = ["postgres", "uuid"] } diesel-async = { version = "0.5.1", features = ["postgres"] } diesel_migrations = "2.2.0" uuid = "1.11.0"