[package]
edition = "2024"
rust-version = "1.88"
name = "weavatrix-scan"
version = "0.4.6"
authors = ["Sergii Ziborov <sergii.ziborov@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic, safe repository scanner for code intelligence"
homepage = "https://weavatrix.com"
documentation = "https://docs.rs/weavatrix-scan"
readme = "README.md"
keywords = [
"repository",
"scanner",
"gitignore",
"static-analysis",
"code-intelligence",
]
categories = [
"development-tools",
"filesystem",
]
license = "MIT"
repository = "https://github.com/sergii-ziborov/weavatrix-scan"
[features]
default = []
notify = ["dep:notify"]
rayon = ["dep:rayon"]
serde = ["dep:serde"]
[lib]
name = "weavatrix_scan"
path = "src/lib.rs"
[[test]]
name = "competitor_parity"
path = "tests/competitor_parity.rs"
[[test]]
name = "content_visit"
path = "tests/content_visit.rs"
[[test]]
name = "coverage_contract"
path = "tests/coverage_contract.rs"
[[test]]
name = "p0_quality"
path = "tests/p0_quality.rs"
[[test]]
name = "p1_next"
path = "tests/p1_next.rs"
[[test]]
name = "p1_quality"
path = "tests/p1_quality.rs"
[[test]]
name = "p2_incremental"
path = "tests/p2_incremental.rs"
[[test]]
name = "p2_next"
path = "tests/p2_next.rs"
[[test]]
name = "p2_walker_api"
path = "tests/p2_walker_api.rs"
[[test]]
name = "p3_cache"
path = "tests/p3_cache.rs"
[[test]]
name = "p3_fault_injection"
path = "tests/p3_fault_injection.rs"
[[test]]
name = "p3_runtime"
path = "tests/p3_runtime.rs"
[[test]]
name = "p3_traversal"
path = "tests/p3_traversal.rs"
[[test]]
name = "p3_watcher"
path = "tests/p3_watcher.rs"
[[test]]
name = "p4_api"
path = "tests/p4_api.rs"
[[test]]
name = "p5_selection"
path = "tests/p5_selection.rs"
[[test]]
name = "report_summary"
path = "tests/report_summary.rs"
[[test]]
name = "scan_repository"
path = "tests/scan_repository.rs"
[[test]]
name = "serde_roundtrip"
path = "tests/serde_roundtrip.rs"
[[test]]
name = "walker"
path = "tests/walker.rs"
[[bench]]
name = "compare_competitors"
path = "benches/compare_competitors.rs"
harness = false
[[bench]]
name = "p2_apis"
path = "benches/p2_apis.rs"
harness = false
[[bench]]
name = "real_repository"
path = "benches/real_repository.rs"
harness = false
[[bench]]
name = "scale_large"
path = "benches/scale_large.rs"
harness = false
[[bench]]
name = "scan_repository"
path = "benches/scan_repository.rs"
harness = false
[[bench]]
name = "stress_profiles"
path = "benches/stress_profiles.rs"
harness = false
[dependencies.notify]
version = "8.2.0"
optional = true
[dependencies.rayon]
version = "1.12.0"
optional = true
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
optional = true
[dev-dependencies.dirwalk]
version = "1.1.1"
[dev-dependencies.ignore]
version = "0.4.31"
[dev-dependencies.jwalk]
version = "0.8.1"
[dev-dependencies.serde_json]
version = "1.0.151"
[dev-dependencies.walkdir]
version = "2.5.0"
[target."cfg(windows)".dependencies.winapi-util]
version = "0.1.11"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"