[package]
name = "md2src"
description = "Markdown to source. Extracts code blocks marked with triple backticks into files."
version = "1.0.1"
authors = ["Alexander Willner <alex@willner.ws>"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://github.com/AlexanderWillner/md2src"
repository = "https://github.com/AlexanderWillner/md2src"
documentation = "https://github.com/AlexanderWillner/md2src"
readme = "README.md"
keywords = ["markdown"]
categories = ["command-line-utilities"]
[lib]
name = "md2src"
path = "src/lib.rs"
[[bin]]
name = "md2src"
path = "src/main.rs"
[dependencies]
pulldown-cmark = { version = "0.7", default-features = false, features = ["simd"] }
structopt = "0.3.13"
failure = "0.1.7"
exitfailure = "0.5.1"