From cb6126ecc495d6f5f4df7fb4d2b7072e749c6dbf 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 08a3c3b825..91fc84389e 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