commit-wizard 0.0.1

A lightweight CLI assistant for Conventional Commits, semantic versioning, and changelog automation.
Documentation
[package]
name = "commit-wizard"
version = "0.0.1"
edition = "2024"
description = "A lightweight CLI assistant for Conventional Commits, semantic versioning, and changelog automation."
license = "MIT"
readme = "README.md"
repository = "https://github.com/KiTechSoftware/commit-wizard"
homepage = "https://github.com/KiTechSoftware/commit-wizard"
documentation = "https://docs.rs/commit-wizard"
keywords = ["cli", "conventional-commits"]
categories = ["command-line-utilities"]
publish = true

[[bin]]
name = "cw"
path = "src/main.rs"

[dependencies]
anyhow = "1.0.98"

chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.41", features = ["derive"] }
dialoguer = "0.12.0"
dirs = "6.0.0"
git2 = "0.20.2"
regex = "1.11.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.141"
tempfile = "3.20.0"
thiserror = "2.0.16"
toml = "0.9.2"

[dev-dependencies]
assert_cmd = "2"
assert_matches = "1.5.0"
predicates = "3"