[package]
edition = "2021"
name = "mdo-cli"
version = "0.3.0"
authors = [
"Matt Wilkie <maphew@gmail.com>",
"Hafiz Ali Raza <haffizaliraza@gmail.com>",
]
build = false
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",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "mdo"
description = "A simple Rust CLI to convert Markdown to HTML5 (styled with simple.css), with optional file watching"
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",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/maphew/mdo"
[[bin]]
name = "mdo"
path = "src/main.rs"
[[bin]]
name = "mdo-open"
path = "src/bin/mdo-open.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.notify]
version = "6"
[dependencies.pulldown-cmark]
version = "0.10"