[package]
edition = "2024"
rust-version = "1.85"
name = "repopilot"
version = "0.3.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 = "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_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_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.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[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"
[dev-dependencies.tempfile]
version = "3"