[package]
edition = "2021"
name = "argyph-cli"
version = "1.0.1"
authors = ["Ezzy1630"]
build = "build.rs"
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_cli"
path = "src/lib.rs"
[dependencies.argyph-core]
version = "=1.0.1"
[dependencies.argyph-fs]
version = "=1.0.1"
[dependencies.argyph-mcp]
version = "=1.0.1"
[dependencies.camino]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]
[dependencies.tracing]
version = "0.1"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"