22 lines
401 B
TOML
22 lines
401 B
TOML
[package]
|
|
name = "commit-msg"
|
|
version = "0.0.1"
|
|
authors = ["Hatter Jiang <jht5945@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
description = "Git commit message format check"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "commit-msg"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
toml = "0.5"
|
|
rust_util = "0.6"
|
|
regex = "1.4"
|
|
|
|
|