summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 0ed8ce8f2f9cd9b4ec8e0afa6c48310a074c0c06 (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
[package]
name = "git-journal"
version = "1.0.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://saschagrunert.github.io/git-journal"
description = "The Git Commit Message and Changelog Generation Framework"

[lib]
name = "gitjournal"

[dependencies]
chrono = "0"
clap = { version = "2", features = ["yaml"] }
git2 = "0"
lazy_static = "0"
nom = { version = "1", features = ["regexp_macros"] }
regex = "0"
rayon = "0"
rustc-serialize = "0"
term = "0"
toml = "0"

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