[package]
name = "git-cz"
version = "0.7.2"
description = "Git conventional commit tools written in Rust"
keywords = ["git", "conventional", "commit", "changelog", "semantic"]
categories = ["development-tools::build-utils"]
readme = "README.md"
homepage = "https://git-cz.github.io"
repository = "https://github.com/ttys3/git-cz.git"
license = "MIT"
authors = ["Hannes De Valkeneer <hannes@de-valkeneer.be>"]
edition = "2018"
include = [
"build.rs",
"src/*",
"README.md",
"LICENSE"
]
[dependencies]
chrono = { version = "0.4.19", features = ["serde"] }
git2 = { version = "0.13.17", default-features = false, features = [] }
handlebars = { version = "3.5.3", features = [ "dir_source" ] }
regex = "1.4.4"
semver = "0.11.0"
serde = { version = "1.0.124", features = ["derive"] }
serde_yaml = "0.8.17"
structopt = "0.3.21"
url = "2.2.1"
thiserror = "1.0.24"
console = "0.14.1"
dialoguer = { version = "0.8.0", features = [] }
[target.'cfg(unix)'.dependencies]
skim = { version = "0.9.3" }
[build-dependencies]
structopt = "0.3.21"
[package.metadata.deb]
depends = ""
extended-description = """\
Git conventional commit tools written in Rust. \
Create a changelog. \
Check if commits follow the convention. \
Calculate the next version based on the conventional commits."""
assets = [
["target/release/git-cz", "/usr/local/bin/", "755"],
["target/completions/git-cz.bash", "/usr/share/bash-completion/completions/", "644"],
["target/completions/_git-cz", "/usr/share/zsh/vendor-completions/", "644"],
["target/completions/git-cz.fish", "/usr/share/fish/completions/", "644"],
]
[patch.crates-io]
dialoguer = { git = "https://github.com/ttys3/dialoguer.git", branch = "fuzzy" }