[package]
edition = "2021"
name = "argyph"
version = "1.0.1"
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"
[[bin]]
name = "argyph"
path = "src/main.rs"
[[test]]
name = "locate_smart_smoke"
path = "tests/locate_smart_smoke.rs"
[[test]]
name = "locate_smoke"
path = "tests/locate_smoke.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.argyph-cli]
version = "=1.0.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"