bfom 0.1.47

Brendan's Flavor of Markdown: I'll build my own markdown format, what could go wrong?
[package]
name = "bfom"
version = "0.1.47"
description = "Brendan's Flavor of Markdown: I'll build my own markdown format, what could go wrong?"
edition = "2021"
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"

[dependencies]
# use the local library
bfom-lib = { path = "../bfom-lib", version = "^0.1.52" }

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