summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 7f1c48524e5e707b52608f62d199aad1c48b22a5 (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.0"
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.6"
clap = { version = "2.32.0", features = ["yaml"] }
failure = "0.1.5"
git2 = "0.8.0"
lazy_static = "1.2.0"
log = "0.4.6"
mowl = "2.0.0"
nom = { version = "4.1.1", features = ["regexp_macros"] }
rayon = "1.0.3"
regex = "1.1.0"
serde = "1.0.84"
serde_derive = "1.0.84"
term = "0.5.1"
toml = "0.4.10"

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