qbrs-sqlx 0.1.0

sqlx-based execution integration for qbrs (Postgres).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.94"
name = "qbrs-sqlx"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "sqlx-based execution integration for qbrs (Postgres)."
readme = "README.md"
keywords = [
    "sql",
    "database",
    "query-builder",
    "postgres",
    "sqlx",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RyutaroYako/qbrs"
resolver = "2"

[package.metadata.docs.rs]
all-features = true

[features]
chrono = [
    "qbrs-core/chrono",
    "sqlx/chrono",
    "dep:chrono",
]
decimal = [
    "qbrs-core/decimal",
    "sqlx/rust_decimal",
    "dep:rust_decimal",
]
uuid = [
    "qbrs-core/uuid",
    "sqlx/uuid",
    "dep:uuid",
]

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

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

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

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

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

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

[dependencies.qbrs-core]
version = "0.1.0"

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

[dependencies.sqlx]
version = "0.9"
features = [
    "postgres",
    "runtime-tokio",
    "tls-rustls",
]
default-features = false

[dependencies.thiserror]
version = "2"

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

[dev-dependencies.pglite-rs]
version = "0.2.7"
features = ["multiple-process"]

[dev-dependencies.tempfile]
version = "3.27.0"

[dev-dependencies.tokio]
version = "1.53.1"
features = ["full"]