-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (39 loc) · 1.1 KB
/
Cargo.toml
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
[package]
name = "clparse"
version = "0.9.1"
description = "A command line tool for parsing CHANGELOG.md files that use the Keep A Changelog format."
keywords = ["changelog", "parser", "keepachangelog"]
categories = ["command-line-utilities", "development-tools", "text-processing"]
homepage = "https://github.com/marcaddeo/clparse"
readme = "README.md"
repository = "https://github.com/marcaddeo/clparse"
documentation = "https://github.com/marcaddeo/clparse#clparse"
authors = ["Marc Addeo <[email protected]>"]
license = "MIT"
edition = "2018"
exclude = [
".cl",
".gitignore",
"scripts"
]
[lib]
name = "clparse"
path = "src/lib.rs"
[[bin]]
name = "clparse"
path = "src/main.rs"
[dependencies]
pulldown-cmark = "0.5.3"
chrono = { version = "0.4.7", features = ["serde"] }
derive_builder = "0.7.2"
serde = "1.0.100"
serde_derive = "1.0.100"
serde_json = "1.0.40"
clap = { version = "2.33.0", features = ["yaml", "suggestions", "color"] }
serde_yaml = "0.8.9"
indexmap = "1.2.0"
anyhow = "1.0.3"
err-derive = "0.2.4"
derive-getters = "0.1.0"
textwrap = "0.11.0"
versions = { version = "5.0.1", features = ["serde"] }