parse-changelog 0.1.0

A changelog parser, written in Rust.
Documentation
[package]
name = "parse-changelog"
version = "0.1.0"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/taiki-e/parse-changelog"
documentation = "https://docs.rs/parse-changelog"
keywords = ["changelog", "parser"]
categories = ["command-line-utilities"]
readme = "README.md"
description = """
A changelog parser, written in Rust.
"""

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[workspace]

[features]
# When using this crate as a library, disable default features.
default = ["structopt"]

[dependencies]
# NB: `anyhow` and `indexmap` are public dependencies.
anyhow = "1.0.20"
indexmap = { version = "1.5.2", features = ["std"] }
once_cell = "1"
regex = "1"
structopt = { version = "0.3", optional = true }

[dev-dependencies]
tempfile = "3"