sea-query 0.32.0

🔱 A dynamic query builder for MySQL, Postgres and SQLite
Documentation
[[bench]]
harness = false
name = "basic"
path = "benches/basic.rs"

[dependencies.bigdecimal]
default-features = false
optional = true
version = "0.4"

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

[dependencies.inherent]
version = "1.0"

[dependencies.ipnetwork]
default-features = false
optional = true
version = "0.20"

[dependencies.mac_address]
default-features = false
optional = true
version = "1.1"

[dependencies.ordered-float]
default-features = false
optional = true
version = "3.4"

[dependencies.pgvector]
default-features = false
optional = true
version = "~0.4"

[dependencies.postgres-types]
default-features = false
optional = true
version = "0"

[dependencies.rust_decimal]
default-features = false
optional = true
version = "1"

[dependencies.sea-query-derive]
default-features = false
optional = true
version = "0.4.2"

[dependencies.serde_json]
default-features = false
features = ["std"]
optional = true
version = "1"

[dependencies.time]
default-features = false
features = ["macros", "formatting"]
optional = true
version = "0.3.36"

[dependencies.uuid]
default-features = false
optional = true
version = "1"

[dev-dependencies.criterion]
version = "0.3"

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

[features]
all-features = ["backend-mysql", "backend-postgres", "backend-sqlite", "derive", "attr", "hashable-value", "thread-safe", "all-types"]
all-types = ["postgres-array", "postgres-interval", "postgres-vector", "with-chrono", "with-json", "with-rust_decimal", "with-bigdecimal", "with-uuid", "with-time", "with-ipnetwork", "with-mac_address"]
attr = ["sea-query-derive"]
backend-mysql = []
backend-postgres = []
backend-sqlite = []
default = ["derive", "backend-mysql", "backend-postgres", "backend-sqlite"]
derive = ["sea-query-derive"]
hashable-value = ["ordered-float"]
option-more-parentheses = []
option-sqlite-exact-column-type = []
postgres-array = []
postgres-interval = []
postgres-vector = ["pgvector"]
tests-cfg = []
thread-safe = []
with-bigdecimal = ["bigdecimal"]
with-chrono = ["chrono"]
with-ipnetwork = ["ipnetwork"]
with-json = ["serde_json"]
with-mac_address = ["mac_address"]
with-rust_decimal = ["rust_decimal"]
with-time = ["time"]
with-uuid = ["uuid"]

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

[package]
authors = ["Chris Tsang <chris.2y3@outlook.com>", "Billy Chan <ccw.billy.123@gmail.com>", "Ivan Krivosheev <py.krivosheev@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
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"
rust-version = "1.62"
version = "0.32.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "common"
path = "tests/common.rs"

[[test]]
name = "option-more-parentheses"
path = "tests/more-parentheses.rs"
required-features = ["tests-cfg", "option-more-parentheses", "backend-mysql"]

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

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

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

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

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