Format toml

This commit is contained in:
Chris Tsang 2021-08-09 07:37:49 +08:00
parent 00adf33489
commit 11931c960e

View File

@ -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"]