summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 8ba53f1b3dd2fa1b1884a6c9004a1919982260d9 (plain)
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
[package]
name = "git-journal"
version = "1.8.1"
license = "MIT"
readme = "README.md"
keywords = ["parser", "git", "log", "changelog", "journal"]
authors = ["Sascha Grunert <mail@saschagruenrt.de>"]
repository = "https://github.com/saschagrunert/git-journal"
homepage = "https://github.com/saschagrunert/git-journal"
documentation = "https://docs.rs/git-journal"
description = "The Git Commit Message and Changelog Generation Framework"
categories = ["command-line-utilities"]
edition = "2018"

[badges]
travis-ci = { repository = "saschagrunert/git-journal", branch = "master" }
appveyor = { repository = "saschagrunert/git-journal", branch = "master", service = "github" }

[lib]
name = "gitjournal"

[dependencies]
chrono = "0.4.19"
clap = { version = "2.34.0", features = ["yaml"] }
failure = "0.1.8"
git2 = "0.13.25"
lazy_static = "1.4.0"
log = "0.4.14"
mowl = "2.1.1"
nom = { git = "https://github.com/Geal/nom", features = ["regexp"] }
rayon = "1.5.1"
regex = "1.5.4"
serde = "1.0.132"
serde_derive = "1.0.132"
term = "0.7.0"
toml = "0.5.8"

[[bin]]
name = "git-journal"
path = "src/main.rs"
doc = false