[package]
edition = "2024"
rust-version = "1.85"
name = "humanize-cli"
version = "0.1.1"
authors = ["Cupnfish <cupnfish@icloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for the Humanize Claude Code plugin"
readme = false
license = "MIT"
repository = "https://github.com/Cupnfish/humanize-rs"
[[bin]]
name = "humanize"
path = "src/main.rs"
[[test]]
name = "gate"
path = "tests/gate.rs"
[[test]]
name = "gen_plan"
path = "tests/gen_plan.rs"
[[test]]
name = "install"
path = "tests/install.rs"
[[test]]
name = "install_skills"
path = "tests/install_skills.rs"
[[test]]
name = "monitor"
path = "tests/monitor.rs"
[[test]]
name = "setup_pr"
path = "tests/setup_pr.rs"
[[test]]
name = "stop_pr"
path = "tests/stop_pr.rs"
[[test]]
name = "stop_rlcr"
path = "tests/stop_rlcr.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4.6"
features = [
"derive",
"env",
"string",
]
[dependencies.crossterm]
version = "0.29"
[dependencies.humanize-core]
version = "0.1.0"
package = "humanize-cli-core"
[dependencies.ratatui]
version = "0.30"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tempfile]
version = "3.27"