basemind 0.0.1

Code-map MCP server + scanner — content-addressed, Fjall-backed inverted index over tree-sitter outlines
[package]
name = "basemind"
version = "0.0.1"
authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
edition = "2024"
description = "Code-map MCP server + scanner — content-addressed, Fjall-backed inverted index over tree-sitter outlines"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Goldziher/basemind"
documentation = "https://docs.rs/basemind"
homepage = "https://github.com/Goldziher/basemind"
keywords = ["mcp", "tree-sitter", "code-map", "scanner", "indexer"]
categories = ["command-line-utilities", "development-tools"]

[lib]
name = "basemind"
path = "src/lib.rs"

[[bin]]
name = "basemind"
path = "src/main.rs"

[dependencies]
ahash = "0.8"
anstream = "1.0"
anstyle = "1"
anyhow = "1"
arc-swap = "1.9.1"
blake3 = "1"
bstr = { version = "1", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
fjall = "3.1.4"
fs2 = "0.4"
gix = { version = "0.84.0", features = ["status", "blob-diff", "revision", "max-performance-safe"] }
globset = "0.4"
hex = "0.4"
ignore = "0.4"
jsonschema = "0.46"
lru = "0.18.0"
memchr = "2"
notify = "8"
notify-debouncer-full = "0.7"
rayon = "1"
regex = "1.12.3"
rmcp = { version = "1.7", features = ["server", "macros", "schemars", "transport-io"] }
rmp-serde = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
streaming-iterator = "0.1"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "sync", "io-util", "io-std", "time"] }
toml = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tree-sitter = "0.26"
tree-sitter-language-pack = "=1.9.0-rc.27"

[dev-dependencies]
insta = "1"
# Client-side rmcp used by the `harden` integration test to drive `basemind serve`
# over a stdio child-process transport. Composes with the [dependencies] entry
# above — features are union-merged by cargo.
rmcp = { version = "1.7", features = ["client", "transport-child-process"] }
tempfile = "3"

[profile.release]
lto = "thin"
codegen-units = 1