[package]
edition = "2024"
name = "devflow"
version = "2.7.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DevFlow CLI — an opinionated take on AI-driven development automation"
readme = "README.md"
keywords = [
"cli",
"workflow",
"automation",
"git",
"devops",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/denniyahh/devflow"
resolver = "2"
[[bin]]
name = "devflow"
path = "src/main.rs"
[[test]]
name = "auto_chain_flag_e2e"
path = "tests/auto_chain_flag_e2e.rs"
[[test]]
name = "auto_chain_leak_repair_e2e"
path = "tests/auto_chain_leak_repair_e2e.rs"
[[test]]
name = "build_provenance"
path = "tests/build_provenance.rs"
[[test]]
name = "ci_parity_guards"
path = "tests/ci_parity_guards.rs"
[[test]]
name = "cut_release_guard"
path = "tests/cut_release_guard.rs"
[[test]]
name = "gate_sweep_e2e"
path = "tests/gate_sweep_e2e.rs"
[[test]]
name = "git_env_hermeticity"
path = "tests/git_env_hermeticity.rs"
[[test]]
name = "gitignore_coverage"
path = "tests/gitignore_coverage.rs"
[[test]]
name = "help_snapshot"
path = "tests/help_snapshot.rs"
[[test]]
name = "log_format_env"
path = "tests/log_format_env.rs"
[[test]]
name = "phase7_cli"
path = "tests/phase7_cli.rs"
[[test]]
name = "pre_commit_branch_guard"
path = "tests/pre_commit_branch_guard.rs"
[[test]]
name = "pre_push_signing_policy"
path = "tests/pre_push_signing_policy.rs"
[[test]]
name = "reap_strays_e2e"
path = "tests/reap_strays_e2e.rs"
[[test]]
name = "release_check"
path = "tests/release_check.rs"
[[test]]
name = "start_reachability_e2e"
path = "tests/start_reachability_e2e.rs"
[[test]]
name = "stop_e2e"
path = "tests/stop_e2e.rs"
[[test]]
name = "workspace_version_pin"
path = "tests/workspace_version_pin.rs"
[[test]]
name = "yes_ship_config"
path = "tests/yes_ship_config.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.devflow-core]
version = "2.7.0"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"json",
"env-filter",
]
[dev-dependencies.devflow-core]
version = "2.7.0"
features = ["test-support"]
[dev-dependencies.tempfile]
version = "3"