[package]
edition = "2024"
name = "repopilot"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first codebase audit CLI with evidence-backed findings"
readme = false
keywords = [
"cli",
"audit",
"code-quality",
"static-analysis",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
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 = "compare_diff"
path = "tests/compare_diff.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 = "file_facts_scan"
path = "tests/file_facts_scan.rs"
[[test]]
name = "finding_model"
path = "tests/finding_model.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 = "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 = "report_writer"
path = "tests/report_writer.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_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"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.ignore]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1.1.2+spec-1.1.0"
[dev-dependencies.tempfile]
version = "3"