minify-html/rust/onepass/Cargo.toml

25 lines
742 B
TOML
Raw Normal View History

2021-08-08 03:58:10 -04:00
[package]
name = "minify-html-onepass"
2022-06-21 11:36:27 -04:00
description = "Even faster version of minify-html"
2021-08-08 03:58:10 -04:00
license = "MIT"
homepage = "https://github.com/wilsonzlin/minify-html"
readme = "README.md"
keywords = ["html", "compress", "minifier", "js", "css"]
categories = ["compression", "command-line-utilities", "development-tools::build-utils", "web-programming"]
repository = "https://github.com/wilsonzlin/minify-html.git"
2023-05-07 08:34:04 -04:00
version = "0.11.1"
2021-08-08 03:58:10 -04:00
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
aho-corasick = "0.7"
2023-01-04 19:52:49 -05:00
css-minify = "0.3.1"
2021-08-08 03:58:10 -04:00
lazy_static = "1.4"
memchr = "2"
2023-01-05 17:43:47 -05:00
minify-js = "0.4.2"
rustc-hash = "1.1.0"