rustdown-cli 0.1.2

Render markdown/html/html-markdown in the terminal
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"