sea-query 0.16.2

🌊 A dynamic query builder for MySQL, Postgres and SQLite
Documentation
[[test]]
name = "test-derive"
path = "tests/derive/mod.rs"
required-features = ["derive"]

[[test]]
name = "test-error"
path = "tests/error/mod.rs"
required-features = []

[[test]]
name = "test-mysql"
path = "tests/mysql/mod.rs"
required-features = ["backend-mysql"]

[[test]]
name = "test-postgres"
path = "tests/postgres/mod.rs"
required-features = ["backend-postgres"]

[[test]]
name = "test-sqlite"
path = "tests/sqlite/mod.rs"
required-features = ["backend-sqlite"]
[dependencies.bigdecimal]
optional = true
version = "^0.2"

[dependencies.bytes]
optional = true
version = "^1"

[dependencies.chrono]
optional = true
version = "^0"

[dependencies.postgres-types]
optional = true
version = "^0"

[dependencies.rust_decimal]
optional = true
version = "^1"

[dependencies.sea-query-derive]
optional = true
version = "0.2.0"

[dependencies.serde_json]
optional = true
version = "^1"

[dependencies.thiserror]
version = "^1"

[dependencies.uuid]
optional = true
version = "^0"

[features]
backend-mysql = []
backend-postgres = []
backend-sqlite = []
default = ["derive", "backend-mysql", "backend-postgres", "backend-sqlite"]
derive = ["sea-query-derive"]
postgres = ["bytes", "postgres-types"]
postgres-bigdecimal = ["with-bigdecimal"]
postgres-chrono = ["with-chrono", "postgres-types/with-chrono-0_4"]
postgres-json = ["with-json", "postgres-types/with-serde_json-1"]
postgres-rust_decimal = ["with-rust_decimal", "rust_decimal/db-postgres"]
postgres-uuid = ["with-uuid", "postgres-types/with-uuid-0_8"]
rusqlite = []
sqlx-mysql = []
sqlx-postgres = []
sqlx-sqlite = []
thread-safe = []
with-bigdecimal = ["bigdecimal"]
with-chrono = ["chrono"]
with-json = ["serde_json"]
with-rust_decimal = ["rust_decimal"]
with-uuid = ["uuid"]

[lib]
name = "sea_query"
path = "src/lib.rs"

[package]
authors = ["Chris Tsang <tyt2y7@gmail.com>", "Billy Chan <ccw.billy.123@gmail.com>"]
categories = ["database"]
description = "🌊 A dynamic query builder for MySQL, Postgres and SQLite"
documentation = "https://docs.rs/sea-query"
edition = "2018"
keywords = ["database", "sql", "mysql", "postgres", "sqlite"]
license = "MIT OR Apache-2.0"
name = "sea-query"
repository = "https://github.com/SeaQL/sea-query"
version = "0.16.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]