[package]
edition = "2021"
rust-version = "1.88"
name = "argyph-graph"
version = "1.0.4"
authors = ["Ezzy1630"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first MCP server giving AI coding agents fast, structured, and semantic context over any codebase."
homepage = "https://github.com/Ezzy1630/argyph"
documentation = "https://docs.rs/argyph"
readme = "README.md"
keywords = [
"mcp",
"ai",
"codebase",
"semantic-search",
"tree-sitter",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Ezzy1630/argyph"
[lib]
name = "argyph_graph"
path = "src/lib.rs"
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[dependencies.argyph-parse]
version = "=1.0.4"
[dependencies.camino]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.argyph-fs]
version = "=1.0.4"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"