[package]
edition = "2021"
rust-version = "1.88"
name = "argyph-parse"
version = "1.0.3"
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_parse"
path = "src/lib.rs"
[[test]]
name = "fixture_tests"
path = "tests/fixture_tests.rs"
[dependencies.argyph-fs]
version = "=1.0.3"
[dependencies.blake3]
version = "1"
[dependencies.camino]
version = "1"
[dependencies.csv]
version = "1.3"
[dependencies.pulldown-cmark]
version = "0.10"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
features = ["parse"]
default-features = false
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-python]
version = "0.25"
[dependencies.tree-sitter-rust]
version = "0.24"
[dependencies.tree-sitter-typescript]
version = "0.23"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"