From d81b6fc08d88080b77ab87d64fcbdde9f351e495 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Thu, 23 Feb 2023 00:48:59 +0100 Subject: [PATCH] fix: sqlx-postgres bigdecimal feature --- sqlx-postgres/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sqlx-postgres/Cargo.toml b/sqlx-postgres/Cargo.toml index 08a3c3b8..91fc8438 100644 --- a/sqlx-postgres/Cargo.toml +++ b/sqlx-postgres/Cargo.toml @@ -16,7 +16,8 @@ migrate = ["sqlx-core/migrate"] offline = ["sqlx-core/offline"] # Type integration features which require additional dependencies -rust_decimal = ["dep:rust_decimal", "dep:num-bigint"] +rust_decimal = ["dep:rust_decimal"] +bigdecimal = ["dep:bigdecimal", "dep:num-bigint"] [dependencies] # Futures crates