[package]
name = "token-codegraph"
version = "0.5.2"
edition = "2021"
description = "Code intelligence tool that builds a semantic knowledge graph from Rust, Go, and Java codebases"
license = "MIT"
repository = "https://github.com/aovestdipaperino/token-codegraph"
homepage = "https://github.com/aovestdipaperino/token-codegraph"
readme = "README.md"
keywords = ["code-intelligence", "knowledge-graph", "mcp", "tree-sitter", "claude"]
categories = ["development-tools", "command-line-utilities"]
[lib]
name = "codegraph"
[[bin]]
name = "codegraph"
path = "src/main.rs"
[dependencies]
libsql = "0.9.30"
tree-sitter = "0.26"
tree-sitter-rust = "0.24"
tree-sitter-go = "0.25"
tree-sitter-java = "0.23"
ort = { version = "2.0.0-rc.12", features = ["load-dynamic"] }
ndarray = "0.17"
clap = { version = "4.6", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sha2 = "0.10"
glob = "0.3"
walkdir = "2"
hex = "0.4"
[build-dependencies]
logo-art = "0.2"
[dev-dependencies]
tempfile = "3"