[package]
edition = "2024"
name = "hypo"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "tiny crate that renders html through macros"
documentation = "https://docs.rs/hypo"
readme = "README.md"
keywords = [
"html",
"markup",
"template",
"hypertext",
]
categories = ["template-engine"]
license = "MPL-2.0"
repository = "https://github.com/lsunsi/hypo"
[features]
kebab = ["dep:const-str"]
perf = ["dep:itoap"]
[lib]
name = "hypo"
path = "src/lib.rs"
[[test]]
name = "attrs"
path = "tests/attrs.rs"
[[test]]
name = "macro"
path = "tests/macro.rs"
[[test]]
name = "maud"
path = "tests/maud.rs"
[[test]]
name = "render"
path = "tests/render.rs"
[dependencies.const-str]
version = "1.0.0"
optional = true
default-features = false
[dependencies.itoap]
version = "1.0.1"
features = ["alloc"]
optional = true
default-features = false
[dev-dependencies.maud]
version = "0.27.0"
default-features = false
[lints.clippy]
nursery = "warn"
pedantic = "warn"