[package]
edition = "2024"
rust-version = "1.85.0"
name = "sea-query-sqlx"
version = "0.8.0-rc.14"
authors = [
"Valentin Tolmer <valentin@tolmer.fr>",
"Ivan Krivosheev <py.krivosheev@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Driver library for using SeaQuery with SQLx"
documentation = "https://docs.rs/sea-query"
readme = false
keywords = [
"database",
"sql",
"mysql",
"postgres",
"sqlite",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SeaQL/sea-query"
[package.metadata.docs.rs]
all-features = true
[features]
postgres-array = ["sea-query/postgres-array"]
postgres-vector = [
"sea-query/postgres-vector",
"pgvector/sqlx",
]
runtime-actix = ["sqlx?/runtime-tokio"]
runtime-actix-native-tls = ["sqlx?/runtime-tokio-native-tls"]
runtime-actix-rustls = ["sqlx?/runtime-tokio-rustls"]
runtime-async-std = ["sqlx?/runtime-async-std"]
runtime-async-std-native-tls = ["sqlx?/runtime-async-std-native-tls"]
runtime-async-std-rustls = ["sqlx?/runtime-async-std-rustls"]
runtime-tokio = ["sqlx?/runtime-tokio"]
runtime-tokio-native-tls = ["sqlx?/runtime-tokio-native-tls"]
runtime-tokio-rustls = ["sqlx?/runtime-tokio-rustls"]
sqlx-any = ["sqlx/any"]
sqlx-mysql = ["sqlx/mysql"]
sqlx-postgres = ["sqlx/postgres"]
sqlx-sqlite = ["sqlx/sqlite"]
with-bigdecimal = [
"sqlx?/bigdecimal",
"sea-query/with-bigdecimal",
]
with-chrono = [
"sqlx?/chrono",
"sea-query/with-chrono",
]
with-ipnetwork = [
"sqlx?/ipnetwork",
"sea-query/with-ipnetwork",
]
with-json = [
"sqlx?/json",
"sea-query/with-json",
]
with-mac_address = [
"sqlx?/mac_address",
"sea-query/with-mac_address",
]
with-rust_decimal = [
"sqlx?/rust_decimal",
"sea-query/with-rust_decimal",
]
with-time = [
"sqlx?/time",
"sea-query/with-time",
]
with-uuid = [
"sqlx?/uuid",
"sea-query/with-uuid",
]
[lib]
name = "sea_query_sqlx"
path = "src/lib.rs"
[dependencies.ipnetwork]
version = "0.20"
optional = true
default-features = false
[dependencies.pgvector]
version = "0.4"
optional = true
default-features = false
[dependencies.sea-query]
version = "1.0.0-rc.30"
features = ["thread-safe"]
default-features = false
[dependencies.sqlx]
version = "0.8"
optional = true
default-features = false