[package]
edition = "2024"
name = "rustdown-cli"
version = "0.1.2"
authors = ["Alex Spinu"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Render markdown/html/html-markdown in the terminal"
homepage = "https://github.com/spinualexandru/rustdown"
documentation = "https://github.com/spinualexandru/rustdown#readme"
readme = "README.md"
keywords = [
"markdown",
"terminal",
"html",
"cli",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/spinualexandru/rustdown"
[lib]
name = "rustdown_cli"
path = "src/lib.rs"
[[bin]]
name = "rustdown"
path = "src/main.rs"
[[test]]
name = "render_smoke"
path = "tests/render_smoke.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.html2md]
version = "0.2"
[dependencies.pulldown-cmark]
version = "0.13.0"
features = [
"html",
"simd",
]
default-features = false
[dependencies.termcolor]
version = "1.4.1"