[package]
edition = "2024"
rust-version = "1.85"
name = "repopilot"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first CLI for repository audit, architecture risk detection, baseline tracking, and CI-friendly code review."
documentation = "https://docs.rs/repopilot"
readme = "README.md"
keywords = [
"cli",
"audit",
"code-review",
"static-analysis",
"architecture",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MykytaStel/repopilot"
[lib]
name = "repopilot"
path = "src/lib.rs"
[[bin]]
name = "repopilot"
path = "src/main.rs"
[[test]]
name = "audit_pipeline"
path = "tests/audit_pipeline.rs"
[[test]]
name = "baseline_command"
path = "tests/baseline_command.rs"
[[test]]
name = "baseline_key"
path = "tests/baseline_key.rs"
[[test]]
name = "baseline_reader"
path = "tests/baseline_reader.rs"
[[test]]
name = "compare_diff"
path = "tests/compare_diff.rs"
[[test]]
name = "complexity_audit"
path = "tests/complexity_audit.rs"
[[test]]
name = "config_loader"
path = "tests/config_loader.rs"
[[test]]
name = "config_scan_cli"
path = "tests/config_scan_cli.rs"
[[test]]
name = "config_scan_integration"
path = "tests/config_scan_integration.rs"
[[test]]
name = "coupling_audit"
path = "tests/coupling_audit.rs"
[[test]]
name = "coupling_graph"
path = "tests/coupling_graph.rs"
[[test]]
name = "file_facts_scan"
path = "tests/file_facts_scan.rs"
[[test]]
name = "finding_model"
path = "tests/finding_model.rs"
[[test]]
name = "import_extraction"
path = "tests/import_extraction.rs"
[[test]]
name = "init_command"
path = "tests/init_command.rs"
[[test]]
name = "language_detection"
path = "tests/language_detection.rs"
[[test]]
name = "large_file_architecture"
path = "tests/large_file_architecture.rs"
[[test]]
name = "long_function_audit"
path = "tests/long_function_audit.rs"
[[test]]
name = "marker_findings"
path = "tests/marker_findings.rs"
[[test]]
name = "markers_detection"
path = "tests/markers_detection.rs"
[[test]]
name = "new_architecture_rules"
path = "tests/new_architecture_rules.rs"
[[test]]
name = "output_html"
path = "tests/output_html.rs"
[[test]]
name = "output_json"
path = "tests/output_json.rs"
[[test]]
name = "output_markdown"
path = "tests/output_markdown.rs"
[[test]]
name = "output_sarif"
path = "tests/output_sarif.rs"
[[test]]
name = "parallel_scan"
path = "tests/parallel_scan.rs"
[[test]]
name = "report_writer"
path = "tests/report_writer.rs"
[[test]]
name = "review_blast_radius"
path = "tests/review_blast_radius.rs"
[[test]]
name = "review_command"
path = "tests/review_command.rs"
[[test]]
name = "review_diff"
path = "tests/review_diff.rs"
[[test]]
name = "rule_registry"
path = "tests/rule_registry.rs"
[[test]]
name = "sarif_mapping"
path = "tests/sarif_mapping.rs"
[[test]]
name = "scan_baseline_cli"
path = "tests/scan_baseline_cli.rs"
[[test]]
name = "scan_config"
path = "tests/scan_config.rs"
[[test]]
name = "scan_custom_threshold"
path = "tests/scan_custom_threshold.rs"
[[test]]
name = "scan_large_file_finding"
path = "tests/scan_large_file_finding.rs"
[[test]]
name = "scan_sarif_cli"
path = "tests/scan_sarif_cli.rs"
[[test]]
name = "scan_summary"
path = "tests/scan_summary.rs"
[[test]]
name = "scanner_exclusions"
path = "tests/scanner_exclusions.rs"
[[test]]
name = "security_rules"
path = "tests/security_rules.rs"
[[test]]
name = "testing_rules"
path = "tests/testing_rules.rs"
[[test]]
name = "workspace_risk"
path = "tests/workspace_risk.rs"
[[test]]
name = "workspace_scan_cli"
path = "tests/workspace_scan_cli.rs"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.ignore]
version = "0.4"
[dependencies.indicatif]
version = "0.18.4"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1.1.2"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true