sea-query 0.26.3

🌊 A dynamic query builder for MySQL, Postgres and SQLite
Documentation
[[bench]]
harness = false
name = "basic"

[[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.3"

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

[dependencies.chrono]
default-features = false
features = ["clock"]
optional = true
version = "^0"

[dependencies.ipnetwork]
optional = true
version = "^0.19"

[dependencies.mac_address]
optional = true
version = "^1.1"

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

[dependencies.proc-macro2]
optional = true
version = "1"

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

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

[dependencies.sea-query-attr]
optional = true
version = "^0.1.1"

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

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

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

[dependencies.time]
features = ["macros", "formatting"]
optional = true
version = "^0.3"

[dependencies.uuid]
optional = true
version = "^1"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.3"

[dev-dependencies.pretty_assertions]
version = "^1"

[features]
attr = ["sea-query-attr"]
backend-mysql = []
backend-postgres = []
backend-sqlite = []
default = ["derive", "backend-mysql", "backend-postgres", "backend-sqlite"]
derive = ["sea-query-derive"]
postgres = ["bytes", "postgres-types"]
postgres-array = ["postgres-types?/array-impls", "sea-query-driver?/postgres-array"]
postgres-interval = ["proc-macro2", "quote"]
postgres-rust_decimal = ["with-rust_decimal", "rust_decimal/db-postgres"]
rusqlite = ["sea-query-driver/rusqlite"]
sqlx-mysql = ["sea-query-driver/sqlx-mysql"]
sqlx-postgres = ["sea-query-driver/sqlx-postgres"]
sqlx-sqlite = ["sea-query-driver/sqlx-sqlite"]
thread-safe = []
with-bigdecimal = ["bigdecimal", "sea-query-driver?/with-bigdecimal"]
with-chrono = ["chrono", "sea-query-driver?/with-chrono", "postgres-types?/with-chrono-0_4"]
with-ipnetwork = ["ipnetwork", "sea-query-driver?/with-ipnetwork"]
with-json = ["serde_json", "sea-query-driver?/with-json", "postgres-types?/with-serde_json-1"]
with-mac_address = ["mac_address", "sea-query-driver?/with-mac_address"]
with-rust_decimal = ["rust_decimal", "sea-query-driver?/with-rust_decimal"]
with-time = ["time", "sea-query-driver?/with-time", "postgres-types?/with-time-0_3"]
with-uuid = ["uuid", "sea-query-driver?/with-uuid", "postgres-types?/with-uuid-1"]

[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 = "2021"
keywords = ["database", "sql", "mysql", "postgres", "sqlite"]
license = "MIT OR Apache-2.0"
name = "sea-query"
readme = "README.md"
repository = "https://github.com/SeaQL/sea-query"
resolver = "2"
rust-version = "1.60"
version = "0.26.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]