bfom 0.1.35

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

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