summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 4c3784568a09aeb887be4d5ee0326c34882e5b61 (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
[package]
name = "git-journal"
version = "1.4.3"
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"]

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

[lib]
name = "gitjournal"

[dependencies]
chrono = "0"
clap = { version = "2", features = ["yaml"] }
error-chain = "0"
git2 = "0"
lazy_static = "0"
log = "0"
mowl = "1"
nom = { version = "2", features = ["regexp_macros"] }
rayon = "0"
regex = "0"
serde = "1"
serde_derive = "1"
term = "0"
toml = "0"

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