bfom 0.1.21

Brendan's Flavor of Markdown: I'll build my own markdown format, what could go wrong?
Documentation
[package]
name = "bfom"
version = "0.1.21"
description = "Brendan's Flavor of Markdown: I'll build my own markdown format, what could go wrong?"
edition = "2018"
authors = ["Brendan Golden <markdown@brendan.ie>"]
license = "MIT OR Apache-2.0"
keywords = ["markdown"]
repository = "https://gitlab.com/silver_rust/bfom"

# I am a lazy fucker who wants it easially useable in my own projects
[[bin]]
name = "cargo-bfom"
path = "src/main.rs"

# using cargo-release
# https://github.com/sunng87/cargo-release
[package.metadata.release]
no-dev-version = true
disable-publish = true # managed by teh CI
tag-message = "{{crate_name}} v{{version}}"
pre-release-commit-message = "v{{version}}"

[dependencies]
# need both of these to be able to read config files
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }