[package]
edition = "2024"
rust-version = "1.88"
name = "weavatrix-git"
version = "0.3.1"
authors = ["Sergii Ziborov <sergii.ziborov@gmail.com>"]
build = false
exclude = [
"npm/**",
"package.json",
"server.json",
"tools/competitor-bench/**",
"vendor/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, bounded, evidence-carrying Git reader with an optional read-only MCP server"
homepage = "https://weavatrix.com"
documentation = "https://docs.rs/weavatrix-git"
readme = "README.md"
keywords = [
"git",
"repository",
"history",
"static-analysis",
"vcs",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/sergii-ziborov/weavatrix-git"
[features]
default = []
mcp = ["dep:mcport"]
[lib]
name = "weavatrix_git"
path = "src/lib.rs"
[[bin]]
name = "weavatrix-git"
path = "src/bin/weavatrix-git.rs"
[[bin]]
name = "weavatrix-git-mcp"
path = "src/bin/weavatrix-git-mcp.rs"
test = false
bench = false
required-features = ["mcp"]
[[example]]
name = "benchmark"
path = "examples/benchmark.rs"
[[example]]
name = "benchmark_cross_repo"
path = "examples/benchmark_cross_repo.rs"
[[example]]
name = "benchmark_storage"
path = "examples/benchmark_storage.rs"
[[example]]
name = "create_fixture"
path = "examples/create_fixture.rs"
[[test]]
name = "layouts"
path = "tests/layouts.rs"
[[test]]
name = "mcp_stdio"
path = "tests/mcp_stdio.rs"
[[test]]
name = "repository"
path = "tests/repository.rs"
[[test]]
name = "repository_features"
path = "tests/repository_features.rs"
[[test]]
name = "repository_set"
path = "tests/repository_set.rs"
[[test]]
name = "snapshot"
path = "tests/snapshot.rs"
[[test]]
name = "storage_acceleration"
path = "tests/storage_acceleration.rs"
[[bench]]
name = "history"
path = "benches/history.rs"
harness = false
[dependencies.mcport]
version = "0.3.0"
optional = true
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"