[package]
edition = "2024"
rust-version = "1.89.0"
name = "html-minifier"
version = "5.0.1"
authors = ["Magic Len <len@magiclen.org>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This library can help you generate and minify your HTML code at the same time. It also supports to minify JS and CSS in `<style>`, `<script>` elements, and ignores the minification of `<pre>`, `<code>` and `<textarea>` elements."
homepage = "https://magiclen.org/html-minifier"
readme = "README.md"
keywords = [
"html",
"minify",
"script",
"style",
]
categories = ["encoding"]
license = "MIT"
repository = "https://github.com/magiclen/html-minifier"
[lib]
name = "html_minifier"
path = "src/lib.rs"
[dependencies.educe]
version = "0.5"
features = [
"Debug",
"Default",
]
default-features = false
[dependencies.html-escape]
version = "0.2"
[dependencies.minifier]
version = "0.3"
default-features = false
[dependencies.str-utils]
version = "0.3"