From 2f062eabcce7adf55cf8652ac182d08e670eef10 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Sun, 26 Mar 2023 15:08:16 +0800 Subject: [PATCH] chore: enable `postgres-array` feature when `sqlx-postgres` backend is selected (#1565) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b2ae4abd..8668989b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ sea-orm-internal = [] sqlx-dep = [] sqlx-all = ["sqlx-mysql", "sqlx-postgres", "sqlx-sqlite"] sqlx-mysql = ["sqlx-dep", "sea-query-binder/sqlx-mysql", "sqlx/mysql"] -sqlx-postgres = ["sqlx-dep", "sea-query-binder/sqlx-postgres", "sqlx/postgres"] +sqlx-postgres = ["sqlx-dep", "sea-query-binder/sqlx-postgres", "sqlx/postgres", "postgres-array"] sqlx-sqlite = ["sqlx-dep", "sea-query-binder/sqlx-sqlite", "sqlx/sqlite"] runtime-async-std = [] runtime-async-std-native-tls = [