[package]
edition = "2021"
name = "htmd-cli"
version = "0.5.1"
authors = ["letmutex"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The command line tool for htmd."
homepage = "https://github.com/letmutex/htmd-cli"
readme = "README.md"
keywords = [
"cli",
"html",
"markdown",
"converter",
]
categories = [
"text-processing",
"parsing",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/letmutex/htmd-cli"
[[bin]]
name = "htmd"
path = "src/main.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.clap]
version = "4.5.7"
[dependencies.glob]
version = "0.3.1"
[dependencies.htmd]
version = "0.5.1"
[dependencies.tokio]
version = "1.38.2"
features = ["rt-multi-thread"]
[dependencies.toml]
version = "0.8.14"
[dev-dependencies.uuid]
version = "1.8.0"
features = [
"v4",
"fast-rng",
]