commitlint-rs 0.1.7

CLI tool to lint commits by Conventional Commits
[package]
name = "commitlint-rs"
description = "CLI tool to lint commits by Conventional Commits"
documentation = "https://keisukeyamashita.github.io/commitlint-rs"
authors = ["KeisukeYamashita <19yamashita15@gmail.com>"]
keywords = ["conventional-commits", "lint"]
categories = ["command-line-utilities"]
version = "0.1.7"
readme = "README.md"
repository = "https://github.com/KeisukeYamashita/commitlint-rs"
license = "MIT OR Apache-2.0"
edition = "2021"
exclude = ["/web"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.4.4", features = ["derive", "env", "string"] }
futures = "0.3.28"
regex = "1.8.4"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.99"
serde_yaml = "0.9.22"
tokio = { version = "1.29.0", features = ["full"] }


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