[package]
edition = "2018"
name = "table_to_html"
version = "0.10.0"
authors = ["Maxim Zhiburt <zhiburt@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The library provides a interface to convert a `tabled::Table` into a HTML table (`<table>`)."
homepage = "https://github.com/zhiburt/tabled"
documentation = "https://docs.rs/table_to_html"
readme = "README.md"
keywords = [
"table",
"print",
"pretty-table",
"format",
"html",
]
categories = [
"text-processing",
"visualization",
]
license = "MIT"
repository = "https://github.com/zhiburt/tabled"
[features]
ansi = ["tabled/ansi"]
derive = ["tabled/derive"]
macros = ["tabled/macros"]
[lib]
name = "table_to_html"
path = "src/lib.rs"
[[example]]
name = "html"
path = "examples/html.rs"
[[test]]
name = "html"
path = "tests/html.rs"
[[test]]
name = "table"
path = "tests/table.rs"
[dependencies.tabled]
version = "0.21"
features = ["std"]
default-features = false
[dev-dependencies.tabled]
version = "0.21"
features = [
"std",
"derive",
"assert",
]
default-features = false