[package]
edition = "2021"
name = "token-codegraph"
version = "0.6.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Code intelligence tool that builds a semantic knowledge graph from Rust, Go, Java, and Scala codebases"
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",
]
license = "MIT"
repository = "https://github.com/aovestdipaperino/token-codegraph"
[lib]
name = "codegraph"
path = "src/lib.rs"
[[bin]]
name = "codegraph"
path = "src/main.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "context_test"
path = "tests/context_test.rs"
[[test]]
name = "db_test"
path = "tests/db_test.rs"
[[test]]
name = "extraction_test"
path = "tests/extraction_test.rs"
[[test]]
name = "go_extraction_test"
path = "tests/go_extraction_test.rs"
[[test]]
name = "graph_test"
path = "tests/graph_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "java_extraction_test"
path = "tests/java_extraction_test.rs"
[[test]]
name = "mcp_test"
path = "tests/mcp_test.rs"
[[test]]
name = "resolution_test"
path = "tests/resolution_test.rs"
[[test]]
name = "scala_extraction_test"
path = "tests/scala_extraction_test.rs"
[[test]]
name = "sync_test"
path = "tests/sync_test.rs"
[[test]]
name = "types_test"
path = "tests/types_test.rs"
[[test]]
name = "vectors_test"
path = "tests/vectors_test.rs"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.libsql]
version = "0.9.30"
[dependencies.ndarray]
version = "0.17"
[dependencies.ort]
version = "2.0.0-rc.12"
features = ["load-dynamic"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-go]
version = "0.25"
[dependencies.tree-sitter-java]
version = "0.23"
[dependencies.tree-sitter-rust]
version = "0.24"
[dependencies.tree-sitter-scala]
version = "0.25"
[dependencies.walkdir]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.logo-art]
version = "0.2"