weavatrix-git 0.3.1

Fast, bounded, evidence-carrying Git reader with an optional read-only MCP server
Documentation
[package]
name = "weavatrix-git"
version = "0.3.1"
edition = "2024"
rust-version = "1.88"
description = "Fast, bounded, evidence-carrying Git reader with an optional read-only MCP server"
license = "MIT"
authors = ["Sergii Ziborov <sergii.ziborov@gmail.com>"]
homepage = "https://weavatrix.com"
repository = "https://github.com/sergii-ziborov/weavatrix-git"
documentation = "https://docs.rs/weavatrix-git"
readme = "README.md"
keywords = ["git", "repository", "history", "static-analysis", "vcs"]
categories = ["development-tools", "parser-implementations"]
exclude = [
    "npm/**",
    "package.json",
    "server.json",
    "tools/competitor-bench/**",
    "vendor/**",
]

[dependencies]
mcport = { version = "0.3.0", optional = true }

[features]
default = []
mcp = ["dep:mcport"]

[[bin]]
name = "weavatrix-git"
path = "src/bin/weavatrix-git.rs"

[[bin]]
name = "weavatrix-git-mcp"
path = "src/bin/weavatrix-git-mcp.rs"
required-features = ["mcp"]
test = false
bench = false

[[bench]]
name = "history"
harness = false

[lints.rust]
unsafe_code = "forbid"

[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"