[package]
edition = "2024"
rust-version = "1.88"
name = "weavatrix-git"
version = "0.1.0"
authors = ["Sergii Ziborov <sergii.ziborov@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dependency-free, evidence-carrying Git repository reader"
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"
[lib]
name = "weavatrix_git"
path = "src/lib.rs"
[[bin]]
name = "weavatrix-git"
path = "src/bin/weavatrix-git.rs"
[[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 = "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 = "storage_acceleration"
path = "tests/storage_acceleration.rs"
[[bench]]
name = "history"
path = "benches/history.rs"
harness = false
[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"