[package]
name = "microralph"
authors = ["Aaron Roney <twitchax@gmail.com>"]
version = "0.7.2"
edition = "2024"
description = "A tiny CLI for creating and executing PRDs with coding agents"
license = "MIT"
repository = "https://github.com/twitchax/microralph"
readme = "README.md"
keywords = ["cli", "prd", "agent", "copilot", "automation"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "mr"
path = "src/main.rs"
[dependencies]
anyhow = "1"
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
indicatif = "0.18"
owo-colors = { version = "4", features = ["supports-colors"] }
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
thiserror = "2"
toml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
which = "8.0.0"
[dev-dependencies]
tempfile = "3"