[package]
edition = "2024"
rust-version = "1.85"
name = "porch"
version = "0.2.2"
build = false
exclude = [
"/target/",
"/.research/",
"/.skills/",
"/.remember/",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local git gate: push to porch, review and certify before origin"
homepage = "https://github.com/jayden-dang/porch"
readme = "README.md"
keywords = [
"git",
"cli",
"review",
"gate",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/jayden-dang/porch"
[[bin]]
name = "porch"
path = "src/main.rs"
[[bin]]
name = "porch-quality"
path = "src/bin/porch_quality.rs"
[[test]]
name = "m10_agent_review"
path = "tests/m10_agent_review.rs"
[[test]]
name = "m11_install"
path = "tests/m11_install.rs"
[[test]]
name = "m13_workflow"
path = "tests/m13_workflow.rs"
[[test]]
name = "m14_agent_run"
path = "tests/m14_agent_run.rs"
[[test]]
name = "m16_quality"
path = "tests/m16_quality.rs"
[[test]]
name = "m1_init_push"
path = "tests/m1_init_push.rs"
[[test]]
name = "m2_run"
path = "tests/m2_run.rs"
[[test]]
name = "m3_review"
path = "tests/m3_review.rs"
[[test]]
name = "m4_fix"
path = "tests/m4_fix.rs"
[[test]]
name = "m5_certify"
path = "tests/m5_certify.rs"
[[test]]
name = "m6_deliver"
path = "tests/m6_deliver.rs"
[[test]]
name = "m6_repair"
path = "tests/m6_repair.rs"
[[test]]
name = "m8_doctor"
path = "tests/m8_doctor.rs"
[[test]]
name = "m8_operator"
path = "tests/m8_operator.rs"
[[test]]
name = "m9_setup"
path = "tests/m9_setup.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.porch-agent]
version = "0.2.1"
[dependencies.porch-gate]
version = "0.2.1"
[dependencies.porch-quality]
version = "0.2.1"
[dependencies.porch-review]
version = "0.2.1"
[dependencies.porch-run]
version = "0.2.1"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.porch-agent]
version = "0.2.1"
[dev-dependencies.porch-deliver]
version = "0.2.1"
[dev-dependencies.porch-gate]
version = "0.2.1"
[dev-dependencies.porch-git]
version = "0.2.1"
[dev-dependencies.porch-review]
version = "0.2.1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"