[package]
edition = "2021"
rust-version = "1.70"
name = "gitwell"
version = "0.1.1"
authors = ["David Liedle"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Surface abandoned work in git repositories — stale branches, forgotten stashes, orphaned commits, WIP markers."
homepage = "https://github.com/davidcanhelp/GitWell"
readme = "README.md"
keywords = [
"git",
"cli",
"productivity",
"workflow",
"maintenance",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/davidcanhelp/GitWell"
[lib]
name = "gitwell"
path = "src/lib.rs"
[[bin]]
name = "gitwell"
path = "src/main.rs"
[[test]]
name = "cluster_test"
path = "tests/cluster_test.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "narrative_test"
path = "tests/narrative_test.rs"
[[test]]
name = "report_test"
path = "tests/report_test.rs"
[[test]]
name = "scanner_branches"
path = "tests/scanner_branches.rs"
[[test]]
name = "scanner_dormant"
path = "tests/scanner_dormant.rs"
[[test]]
name = "scanner_orphans"
path = "tests/scanner_orphans.rs"
[[test]]
name = "scanner_stashes"
path = "tests/scanner_stashes.rs"
[[test]]
name = "scanner_wip"
path = "tests/scanner_wip.rs"
[[test]]
name = "triage_state_test"
path = "tests/triage_state_test.rs"
[dependencies]