[package]
name = "thermal-printer-cli"
version = "0.2.0"
edition = "2024"
description = "CLI for rendering Markdown/HTML to PNG and sending to a thermal-printer-server"
license = "MIT"
repository = "https://github.com/mikekutzma/thermal-printer"
include = ["src/**", "fonts/**", "Cargo.toml"]
[[bin]]
name = "thermal-printer-cli"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
comrak = { version = "0.36", default-features = false }
scraper = "0.23"
cosmic-text = "0.12"
tiny-skia = "0.11"
image = "0.25"
reqwest = { version = "0.12", features = ["blocking", "multipart"] }
serde_json = "1"
serde = { version = "1", features = ["derive"] }