[package]
name = "marcli"
version = "0.2.0"
edition = "2021"
description = "Converts CommonMark Markdown to ANSI-escaped terminal output"
license = "MIT"
repository = "https://github.com/Oeditus/marcli-rust"
homepage = "https://github.com/Oeditus/marcli-rust"
documentation = "https://docs.rs/marcli"
readme = "README.md"
authors = ["Aleksei Matiushkin"]
keywords = ["markdown", "terminal", "ansi", "cli", "syntax-highlighting"]
categories = ["command-line-interface", "text-processing", "rendering"]
exclude = ["stuff/img/logo-128x128.png"]
[[bin]]
name = "marcli"
path = "src/bin/marcli.rs"
[profile.release]
lto = true
opt-level = 3
strip = "symbols"
[dependencies]
comrak = { version = "0.36", default-features = false }
syntect = { version = "5", default-features = false, features = ["default-syntaxes", "regex-onig"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
regex = "1"
once_cell = "1"
[dev-dependencies]
pretty_assertions = "1"