[package]
edition = "2024"
rust-version = "1.88"
name = "nexql-tools"
version = "0.4.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP tool registry, JSON schemas, executors"
homepage = "https://github.com/NexQL-OSS/mcp"
readme = "README.md"
keywords = [
"postgres",
"mcp",
"sql",
"llm",
"database",
]
categories = [
"database",
"command-line-utilities",
]
license = "GPL-3.0-only"
repository = "https://github.com/NexQL-OSS/mcp"
resolver = "2"
[lib]
name = "nexql_tools"
path = "src/lib.rs"
[[test]]
name = "all_tools_smoke"
path = "tests/all_tools_smoke.rs"
[[test]]
name = "cell_json"
path = "tests/cell_json.rs"
[[test]]
name = "phase2_catalog"
path = "tests/phase2_catalog.rs"
[[test]]
name = "session_switch"
path = "tests/session_switch.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
[dependencies.deadpool-postgres]
version = "0.14"
[dependencies.nexql-conn]
version = "0.4.2"
[dependencies.nexql-index]
version = "0.4.2"
[dependencies.nexql-policy]
version = "0.4.2"
[dependencies.pg_query]
version = "6.1"
[dependencies.rust_decimal]
version = "1"
features = ["db-tokio-postgres"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"rt",
"macros",
"process",
"fs",
"time",
"io-util",
"io-std",
"sync",
"net",
"signal",
]
[dependencies.tokio-postgres]
version = "0.7"
features = [
"with-chrono-0_4",
"with-uuid-1",
"with-serde_json-1",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"rt",
"macros",
"process",
"fs",
"time",
"io-util",
"io-std",
"sync",
"net",
"signal",
]