[package]
name = "krait-cli"
version = "0.1.0"
edition = "2021"
description = "Code intelligence CLI for AI agents"
license = "MIT"
readme = "README.md"
keywords = ["lsp", "code-intelligence", "cli", "ai", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
exclude = [".github", "bench", "tests/fixtures", ".agents", ".claude"]
[lib]
name = "krait"
path = "src/lib.rs"
[[bin]]
name = "krait"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "2"
lsp-types = "0.97"
url = "2"
toml = "0.8"
blake3 = "1"
rusqlite = { version = "0.32", features = ["bundled"] }
ignore = "0.4"
regex = "1"
rayon = "1"
notify-debouncer-full = "0.3"
dashmap = "6"
libc = "0.2"
dirs = "6"
which = "7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[lints.rust]
future-incompatible = { level = "warn", priority = -1 }
nonstandard_style = { level = "deny", priority = -2 }
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -2 }