[package]
name = "ansi-to-html"
version = "0.2.1"
authors = ["Ludwig Stecher "]
description = "ANSI escape codes to HTML converter"
categories = ["command-line-interface", "encoding"]
repository = "https://github.com/Aloso/to-html"
documentation = "https://docs.rs/ansi-to-html"
homepage = "https://github.com/Aloso/to-html/tree/master/crates/ansi-to-html"
readme = "README.md"
edition = "2021"
license = "MIT"
keywords = ["color", "cli", "terminal", "html"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.7.3"
thiserror = "1.0.40"
once_cell = { version = "1.17.1", optional = true }
[features]
default = []
lazy-init = ["once_cell"]
[dev-dependencies]
insta = "1.29.0"