[package]
name = "sz-orm-sqlx"
description = "sqlx adapter: MySQL, PostgreSQL, SQLite backend via sqlx crate"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
sz-orm-core = { workspace = true }
async-trait.workspace = true
tokio = { workspace = true, features = ["sync"] }
sqlx = { version = "0.9", default-features = false, features = ["runtime-tokio", "tls-rustls", "mysql", "postgres", "sqlite", "chrono", "json", "rust_decimal", "uuid"] }
rust_decimal = "1.36"
async-stream = "0.3"
futures.workspace = true
parking_lot.workspace = true
sz-orm-oracle = { workspace = true, optional = true }
sz-orm-mssql = { workspace = true, optional = true }
[features]
default = []
oracle = ["dep:sz-orm-oracle"]
mssql = ["dep:sz-orm-mssql"]
auto-prewarm = ["sz-orm-core/auto-prewarm"]
[dev-dependencies]
tokio = { workspace = true, features = ["full", "test-util"] }
proptest = { workspace = true }
[lib]
name = "sz_orm_sqlx"
path = "src/lib.rs"
[[test]]
name = "sqlx_adapter_tests"
path = "tests/sqlx_adapter_tests.rs"
[[test]]
name = "real_db_pool_tests"
path = "tests/real_db_pool_tests.rs"
[[test]]
name = "real_db_jepsen"
path = "tests/real_db_jepsen.rs"
[[test]]
name = "benchmark"
path = "tests/benchmark.rs"
[[test]]
name = "differential_fuzz"
path = "tests/differential_fuzz.rs"
[lints]
workspace = true