minify-html/rust/onepass/Cargo.toml

28 lines
845 B
TOML
Raw Normal View History

2021-08-08 03:58:10 -04:00
[package]
name = "minify-html-onepass"
description = "Alternate version of minify-html"
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"
2021-12-14 23:30:50 -05:00
version = "0.8.0"
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" }
[features]
default = []
js-esbuild = ["crossbeam", "esbuild-rs"]
[dependencies]
aho-corasick = "0.7"
crossbeam = { version = "0.7", optional = true }
2021-10-23 01:54:57 -04:00
esbuild-rs = { version = "0.13.8", optional = true }
2021-08-08 03:58:10 -04:00
lazy_static = "1.4"
memchr = "2"