[package]
edition = "2024"
name = "grapha"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blazingly fast code intelligence CLI and MCP server for Swift and Rust"
homepage = "https://github.com/oops-rs/grapha"
readme = "README.md"
keywords = [
"code-intelligence",
"mcp",
"analysis",
"swift",
"rust",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/oops-rs/grapha"
[lib]
name = "grapha"
path = "src/lib.rs"
[[bin]]
name = "grapha"
path = "src/main.rs"
[[test]]
name = "dataflow_integration"
path = "tests/dataflow_integration.rs"
[[test]]
name = "fields_test"
path = "tests/fields_test.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "snippet_test"
path = "tests/snippet_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.8"
[dependencies.bincode]
version = "2"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.git2]
version = "0.20"
default-features = false
[dependencies.grapha-core]
version = "0.3.0"
[dependencies.grapha-swift]
version = "0.3.0"
[dependencies.ignore]
version = "0.4"
[dependencies.indicatif]
version = "0.18"
[dependencies.langcodec]
version = "0.12"
[dependencies.notify]
version = "8.2"
[dependencies.notify-debouncer-mini]
version = "0.7"
[dependencies.rayon]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tantivy]
version = "0.26"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
]
[dependencies.toml]
version = "1"
[dependencies.tower-http]
version = "0.6"
features = ["cors"]
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-rust]
version = "0.24"
[dependencies.urlencoding]
version = "2"
[dependencies.xcassets]
version = "0.2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"