-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
46 lines (39 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "mit-commit-message-lints"
version = "6.0.11"
authors = [
"Billie Thompson <billie+mit-commit-message-lints@billiecodes.com>"
]
edition = "2018"
license = "CC0-1.0"
categories = [ "development-tools", "command-line-utilities" ]
keywords = [ "git", "git-hooks" ]
readme = "../README.md"
repository = "https://github.com/PurpleBooth/git-mit"
description = "Check the correctness of a specific commit message. Designed to be used in tools providing commit-msg style hooks"
[dependencies]
shell-words = "1.1.0"
glob = "0.3.2"
thiserror = "2.0.0"
miette = { version = "7.4.0", features = [ "fancy" ] }
git2 = "0.20.0"
openssl = { version = "0.10.68", optional = true }
serde_yaml = "0.9.34"
indoc = "2.0.5"
toml = "0.8.19"
mit-commit = "3.3.1"
mit-lint = "3.4.0"
comfy-table = "7.1.3"
clap = { version = "4.5.26", features = ["derive", "cargo", "wrap_help", "env", "unicode" ] }
time = "0.3.41"
[dependencies.serde]
version = "1.0.217"
features = [ "derive" ]
[dev-dependencies]
criterion = "0.8.0"
[[bench]]
name = "trailers"
harness = false
[features]
default = []
vendored-openssl = ["openssl/vendored"]