[package]
edition = "2024"
rust-version = "1.88"
name = "tuika-html"
version = "0.1.0"
authors = [
"Mykhailo Chalyi <mike@chaliy.name>",
"Everruns <support@everruns.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal-native HTML rendering for tuika: a Markdown block seam and a standalone Html view."
homepage = "https://github.com/everruns/tuika"
readme = "README.md"
keywords = [
"tui",
"html",
"markdown",
"ratatui",
"terminal",
]
categories = [
"command-line-interface",
"text-processing",
]
license = "MIT"
repository = "https://github.com/everruns/tuika"
[lib]
name = "tuika_html"
path = "src/lib.rs"
[[example]]
name = "html_markdown"
path = "examples/html_markdown/main.rs"
[[example]]
name = "html_view"
path = "examples/html_view/main.rs"
[[test]]
name = "deep"
path = "tests/deep.rs"
[dependencies.html5ever]
version = "0.39"
[dependencies.markup5ever_rcdom]
version = "0.39"
[dependencies.ratatui-core]
version = "0.1"
[dependencies.tuika]
version = "0.7.0"