[package]
edition = "2024"
rust-version = "1.88"
name = "basalt-db"
version = "0.1.6"
build = false
exclude = [
".github/",
"dist-workspace.toml",
"qa/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI-first local SQL workspaces for structured data and coding agents"
readme = "README.md"
keywords = [
"agents",
"cli",
"mcp",
"sql",
"workspace",
]
categories = [
"database-implementations",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/joshiii-xyz/basalt"
[lib]
name = "basalt"
path = "src/lib.rs"
[[bin]]
name = "basalt"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "crash_recovery"
path = "tests/crash_recovery.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "mcp"
path = "tests/mcp.rs"
[[test]]
name = "workspace"
path = "tests/workspace.rs"
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies.csv]
version = "1.3"
[dependencies.fs4]
version = "1.1.0"
[dependencies.futures]
version = "0.3"
[dependencies.rmcp]
version = "3.2.0"
features = [
"elicitation",
"macros",
"request-state",
"schemars",
"server",
"transport-io",
]
[dependencies.schemars]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.tokio]
version = "1"
features = [
"io-std",
"net",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
opt-level = 3
lto = true
strip = true