[package]
edition = "2021"
name = "agent-first-psql"
version = "0.4.2"
build = false
exclude = [".github/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent PostgreSQL client for AI agents — SQL-native JSONL in, JSONL out"
readme = "README.md"
license = "MIT"
repository = "https://github.com/cmnspore/agent-first-psql"
[lib]
name = "agent_first_psql"
path = "src/lib.rs"
[[bin]]
name = "afpsql"
path = "src/main.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "coverage_integration"
path = "tests/coverage_integration.rs"
[[test]]
name = "psql_compatibility"
path = "tests/psql_compatibility.rs"
[[test]]
name = "runtime_integration"
path = "tests/runtime_integration.rs"
[dependencies.agent-first-data]
version = "0.7"
features = [
"cli-help",
"cli-help-markdown",
]
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.deadpool-postgres]
version = "0.14"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-postgres]
version = "0.7"
features = ["with-serde_json-1"]
[lints.clippy]
expect_used = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
unwrap_used = "deny"