[package]
edition = "2021"
rust-version = "1.81.0"
name = "ironhtml-elements"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe HTML5 elements following the WHATWG Living Standard"
readme = "README.md"
keywords = [
"html",
"html5",
"elements",
"type-safe",
"no-std",
]
categories = [
"web-programming",
"no-std",
]
license = "MIT"
repository = "https://github.com/LeakIX/ironhtml"
[lib]
name = "ironhtml_elements"
path = "src/lib.rs"
[dependencies]
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "deny"