[package]
edition = "2021"
rust-version = "1.88"
name = "argyph-embed"
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"
[features]
live-providers = []
[lib]
name = "argyph_embed"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.hex]
version = "0.4"
[dependencies.ort]
version = "2.0.0-rc.12"
features = ["download-binaries"]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokenizers]
version = "0.23"
[dependencies.tokio]
version = "1"
features = [
"rt",
"time",
"macros",
"fs",
"io-util",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "deny"