[package]
edition = "2024"
rust-version = "1.90"
name = "keelson-psql"
version = "0.1.1"
authors = ["Kensuke Kubo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The PostgreSQL dialect for keelson."
readme = "README.md"
keywords = [
"sql",
"postgres",
"postgresql",
"query-builder",
"database",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/ken109/keelson-rs"
[features]
exhaustive = ["live-docker"]
live-docker = []
macros = ["keelson-core/macros"]
[lib]
name = "keelson_psql"
path = "src/lib.rs"
[[test]]
name = "combinatorial"
path = "tests/combinatorial.rs"
[[test]]
name = "grammar_dml"
path = "tests/grammar_dml.rs"
[[test]]
name = "grammar_merge"
path = "tests/grammar_merge.rs"
[[test]]
name = "grammar_select"
path = "tests/grammar_select.rs"
[[test]]
name = "grammar_values"
path = "tests/grammar_values.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.keelson-core]
version = "0.1.1"
[dev-dependencies.pg_query]
version = "6"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
todo = "warn"
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"