[package]
edition = "2024"
rust-version = "1.85"
name = "qcraft-postgres"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL renderer for qcraft"
readme = false
keywords = [
"sql",
"query-builder",
"postgresql",
"sqlite",
"ast",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/emilt27/qcraft"
[lib]
name = "qcraft_postgres"
path = "src/lib.rs"
[[test]]
name = "ddl"
path = "tests/ddl.rs"
[[test]]
name = "dml"
path = "tests/dml.rs"
[[test]]
name = "dql"
path = "tests/dql.rs"
[[test]]
name = "integration_ddl"
path = "tests/integration_ddl.rs"
[[test]]
name = "integration_ddl_ignored_features"
path = "tests/integration_ddl_ignored_features.rs"
[[test]]
name = "integration_dml"
path = "tests/integration_dml.rs"
[[test]]
name = "integration_dml_ignored_features"
path = "tests/integration_dml_ignored_features.rs"
[[test]]
name = "integration_dml_unsupported_features"
path = "tests/integration_dml_unsupported_features.rs"
[[test]]
name = "integration_dql"
path = "tests/integration_dql.rs"
[[test]]
name = "integration_dql_ignored_features"
path = "tests/integration_dql_ignored_features.rs"
[[test]]
name = "integration_dql_unsupported_features"
path = "tests/integration_dql_unsupported_features.rs"
[[test]]
name = "integration_tcl"
path = "tests/integration_tcl.rs"
[[test]]
name = "integration_tcl_ignored_features"
path = "tests/integration_tcl_ignored_features.rs"
[[test]]
name = "integration_tcl_unsupported_features"
path = "tests/integration_tcl_unsupported_features.rs"
[[test]]
name = "tcl"
path = "tests/tcl.rs"
[dependencies.qcraft-core]
version = "0.1.0"
[dev-dependencies.postgres]
version = "0.19"
[dev-dependencies.testcontainers]
version = "0.27"
features = ["blocking"]
[dev-dependencies.testcontainers-modules]
version = "0.15"
features = ["postgres"]