diff --git a/Cargo.toml b/Cargo.toml index 6f8cadbb..ec3d5282 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,11 +20,7 @@ categories = ["database"] keywords = ["async", "orm", "mysql", "postgres", "sqlite"] [package.metadata.docs.rs] -features = [ - "default", - "sqlx-all", - "runtime-async-std-native-tls", -] +features = ["default", "sqlx-all", "runtime-async-std-native-tls"] rustdoc-args = ["--cfg", "docsrs"] [lib] @@ -69,14 +65,8 @@ macros = ["sea-orm-macros"] mock = [] with-json = ["serde_json", "sea-query/with-json"] with-chrono = ["chrono", "sea-query/with-chrono"] -with-rust_decimal = [ - "rust_decimal", - "sea-query/with-rust_decimal", -] -with-uuid = [ - "uuid", - "sea-query/with-uuid", -] +with-rust_decimal = ["rust_decimal", "sea-query/with-rust_decimal"] +with-uuid = ["uuid", "sea-query/with-uuid"] sqlx-all = ["sqlx-mysql", "sqlx-postgres", "sqlx-sqlite"] sqlx-dep = ["sqlx-json", "sqlx-chrono", "sqlx-decimal", "sqlx-uuid"] sqlx-json = ["sqlx/json", "with-json"]