From b14a88f7aef2d78b339e626844f0c78687cbe0fd Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Mon, 24 Jul 2023 08:53:04 +1200 Subject: [PATCH] Expose sea-orm feature flags in sea-orm-migration (#1775) Some features of the sea-query language are unavailable in migrations with the default feature flags, so we need to be able to enable them in sea-orm-migration --- sea-orm-migration/Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sea-orm-migration/Cargo.toml b/sea-orm-migration/Cargo.toml index 58c7cafe..16d83bfe 100644 --- a/sea-orm-migration/Cargo.toml +++ b/sea-orm-migration/Cargo.toml @@ -45,3 +45,9 @@ runtime-tokio-native-tls = ["sea-orm/runtime-tokio-native-tls"] runtime-actix-rustls = ["sea-orm/runtime-actix-rustls"] runtime-async-std-rustls = ["sea-orm/runtime-async-std-rustls"] runtime-tokio-rustls = ["sea-orm/runtime-tokio-rustls"] +with-json = ["sea-orm/with-json"] +with-chrono = ["sea-orm/with-chrono"] +with-rust_decimal = ["sea-orm/with-rust_decimal"] +with-bigdecimal = ["sea-orm/with-bigdecimal"] +with-uuid = ["sea-orm/with-uuid"] +with-time = ["sea-orm/with-time"]