[package]
edition = "2024"
name = "basemind"
version = "0.0.1"
authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Code-map MCP server + scanner — content-addressed, Fjall-backed inverted index over tree-sitter outlines"
homepage = "https://github.com/Goldziher/basemind"
documentation = "https://docs.rs/basemind"
readme = "README.md"
keywords = [
"mcp",
"tree-sitter",
"code-map",
"scanner",
"indexer",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Goldziher/basemind"
[lib]
name = "basemind"
path = "src/lib.rs"
[[bin]]
name = "basemind"
path = "src/main.rs"
[[test]]
name = "config_schema"
path = "tests/config_schema.rs"
[[test]]
name = "git_cache_smoke"
path = "tests/git_cache_smoke.rs"
[[test]]
name = "git_smoke"
path = "tests/git_smoke.rs"
[[test]]
name = "harden"
path = "tests/harden.rs"
[[test]]
name = "lang_fallback_smoke"
path = "tests/lang_fallback_smoke.rs"
[[test]]
name = "mcp_smoke"
path = "tests/mcp_smoke.rs"
[[test]]
name = "scan_smoke"
path = "tests/scan_smoke.rs"
[[test]]
name = "schema_bump"
path = "tests/schema_bump.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.anstream]
version = "1.0"
[dependencies.anstyle]
version = "1"
[dependencies.anyhow]
version = "1"
[dependencies.arc-swap]
version = "1.9.1"
[dependencies.blake3]
version = "1"
[dependencies.bstr]
version = "1"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.fjall]
version = "3.1.4"
[dependencies.fs2]
version = "0.4"
[dependencies.gix]
version = "0.84.0"
features = [
"status",
"blob-diff",
"revision",
"max-performance-safe",
]
[dependencies.globset]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.jsonschema]
version = "0.46"
[dependencies.lru]
version = "0.18.0"
[dependencies.memchr]
version = "2"
[dependencies.notify]
version = "8"
[dependencies.notify-debouncer-full]
version = "0.7"
[dependencies.rayon]
version = "1"
[dependencies.regex]
version = "1.12.3"
[dependencies.rmcp]
version = "1.7"
features = [
"server",
"macros",
"schemars",
"transport-io",
]
[dependencies.rmp-serde]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.streaming-iterator]
version = "0.1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
"sync",
"io-util",
"io-std",
"time",
]
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-language-pack]
version = "=1.9.0-rc.27"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.rmcp]
version = "1.7"
features = [
"client",
"transport-child-process",
]
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = "thin"
codegen-units = 1