[package]
edition = "2024"
rust-version = "1.97.1"
name = "code-system-graph-core"
version = "1.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core extraction, linking, and query engine for Code System Graph."
homepage = "https://github.com/dertin/code-system-graph"
readme = "README.md"
keywords = [
"code-intelligence",
"static-analysis",
"impact-analysis",
"mcp",
"dependency-graph",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/dertin/code-system-graph"
[lib]
name = "code_system_graph_core"
path = "src/lib.rs"
[[test]]
name = "codegraph_provider_e2e"
path = "tests/codegraph_provider_e2e.rs"
[[test]]
name = "compatibility"
path = "tests/compatibility.rs"
[[test]]
name = "impact"
path = "tests/impact.rs"
[[test]]
name = "scale_performance"
path = "tests/scale_performance.rs"
[dependencies.async-trait]
version = "0.1.91"
[dependencies.atomic-write-file]
version = "0.3.0"
[dependencies.blake3]
version = "1.8.5"
[dependencies.code-system-graph-model]
version = "1.0.2"
[dependencies.globset]
version = "0.4.19"
[dependencies.graphql-parser]
version = "0.4.1"
[dependencies.hcl-rs]
version = "0.19.7"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.31.3"
features = ["fs"]
[dependencies.proto-parser]
version = "1.14.3"
[dependencies.pulldown-cmark]
version = "0.13.4"
[dependencies.reqwest]
version = "0.13.4"
features = [
"json",
"rustls",
]
default-features = false
[dependencies.rmcp]
version = "3.1.0"
features = [
"client",
"transport-async-rw",
"which-command",
]
default-features = false
[dependencies.schemars]
version = "1.2.2"
[dependencies.semver]
version = "1.0.28"
features = ["serde"]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde-saphyr]
version = "1.0.0"
[dependencies.serde_json]
version = "1.0.151"
features = ["preserve_order"]
[dependencies.sqlparser]
version = "0.62.0"
[dependencies.thiserror]
version = "2.0.19"
[dependencies.tokio]
version = "1.53.1"
features = [
"io-util",
"macros",
"process",
"rt",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7.19"
features = ["rt"]
[dependencies.tree-sitter]
version = "0.26.11"
[dependencies.tree-sitter-go]
version = "0.25.0"
[dependencies.tree-sitter-java]
version = "0.23.5"
[dependencies.tree-sitter-javascript]
version = "0.25.0"
[dependencies.tree-sitter-python]
version = "0.25.0"
[dependencies.tree-sitter-rust]
version = "0.24.2"
[dependencies.tree-sitter-typescript]
version = "0.23.2"
[dependencies.url]
version = "2.5.8"
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.tokio]
version = "1.53.1"
features = [
"macros",
"rt",
]
[lints.clippy]
clone_on_copy = "deny"
large_enum_variant = "deny"
needless_collect = "deny"
redundant_clone = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = 10
[lints.clippy.pedantic]
level = "warn"
priority = 5
[lints.rust]
missing_docs = "deny"
unsafe_code = "deny"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.nonstandard_style]
level = "deny"
priority = -1