[package]
name = "mdo-cli"
version = "0.2.0"
edition = "2021"
default-run = "mdo"
authors = [
"Matt Wilkie <maphew@gmail.com>",
"Hafiz Ali Raza <haffizaliraza@gmail.com>",
]
description = "A simple Rust CLI to convert Markdown to HTML5 (styled with simple.css), with optional file watching"
license = "MIT OR Apache-2.0"
repository = "https://github.com/maphew/mdo"
homepage = "https://maphew.github.io/mdo/"
documentation = "https://docs.rs/mdo-cli"
readme = "README.md"
keywords = ["markdown", "html", "cli", "rust"]
categories = ["command-line-utilities", "text-processing"]
include = [
"/src/**/*.rs",
"/tests/**/*.rs",
"/assets/simple.min.css",
"/assets/simple.css.LICENSE",
"/scripts/*.ps1",
"/scripts/*.sh",
"/Cargo.toml",
"/Cargo.lock",
"/CHANGELOG.md",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/example.md",
]
[dependencies]
pulldown-cmark = "0.10"
clap = { version = "4", features = ["derive"] }
notify = "6"
[[bin]]
name = "mdo"
path = "src/main.rs"
[[bin]]
name = "mdo-open"
path = "src/bin/mdo-open.rs"