[package]
name = "markdownx"
description = "⇟"
version = "0.0.2"
edition = "2021"
authors = ["hxphsts@kernelx.ai"]
license = "Apache-2.0"
keywords = ["markdown", "renderer", "ui", "html", "component"]
[dependencies]
pulldown-cmark = "0.9"
clap = { version = "4.3", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
toml = "0.7"
syntect = "5.0"
minify-html = { version = "0.11", optional = true }
notify = "5.1"
ctrlc = "3.4"
tiny_http = { version = "0.12", optional = true }
thiserror = "1.0"
regex = "1.9"
[features]
default = ["server"]
server = ["tiny_http"]
minify = ["minify-html"]
[[bin]]
name = "mdx"
path = "src/main.rs"
[lib]
name = "mdx"
path = "src/lib.rs"