[package]
edition = "2021"
name = "sz-orm-sqlx"
version = "1.1.0"
authors = ["SZ-ORM Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "sqlx adapter: MySQL, PostgreSQL, SQLite backend via sqlx crate"
homepage = "https://github.com/ljclz/sz-orm"
readme = false
keywords = [
"orm",
"database",
"async",
"sql",
"tokio",
]
categories = [
"database",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/ljclz/sz-orm"
[lib]
name = "sz_orm_sqlx"
path = "src/lib.rs"
[[test]]
name = "benchmark"
path = "tests/benchmark.rs"
[[test]]
name = "differential_fuzz"
path = "tests/differential_fuzz.rs"
[[test]]
name = "real_db_jepsen"
path = "tests/real_db_jepsen.rs"
[[test]]
name = "real_db_pool_tests"
path = "tests/real_db_pool_tests.rs"
[[test]]
name = "sqlx_adapter_tests"
path = "tests/sqlx_adapter_tests.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.rust_decimal]
version = "1.36"
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"tls-rustls",
"mysql",
"postgres",
"sqlite",
"chrono",
"json",
"rust_decimal",
"uuid",
]
default-features = false
[dependencies.sz-orm-core]
version = "1.0.0"
[dependencies.tokio]
version = "1.40"
features = [
"full",
"sync",
]
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tokio]
version = "1.40"
features = [
"full",
"full",
"test-util",
]
[lints.clippy]
module_name_repetitions = "allow"
type_complexity = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"