minify-html/rust/main/Cargo.toml

28 lines
855 B
TOML
Raw Normal View History

2019-12-15 03:37:53 -05:00
[package]
2020-07-11 11:29:34 -04:00
name = "minify-html"
2021-01-07 08:26:02 -05:00
description = "Extremely fast and smart HTML + JS + CSS minifier"
license = "MIT"
2020-07-11 11:29:34 -04:00
homepage = "https://github.com/wilsonzlin/minify-html"
readme = "README.md"
2021-01-07 08:26:02 -05:00
keywords = ["html", "compress", "minifier", "js", "css"]
categories = ["compression", "command-line-utilities", "development-tools::build-utils", "web-programming"]
2020-07-11 11:29:34 -04:00
repository = "https://github.com/wilsonzlin/minify-html.git"
2021-08-07 23:01:44 -04:00
version = "0.6.0"
2019-12-15 03:37:53 -05:00
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
2019-12-15 03:37:53 -05:00
[badges]
maintenance = { status = "actively-developed" }
2020-07-11 08:20:17 -04:00
[features]
default = []
js-esbuild = ["crossbeam", "esbuild-rs"]
2020-07-11 08:20:17 -04:00
2019-12-15 03:37:53 -05:00
[dependencies]
aho-corasick = "0.7"
2020-07-22 06:50:00 -04:00
crossbeam = { version = "0.7", optional = true }
esbuild-rs = { version = "0.12.18", optional = true }
2020-07-22 06:50:00 -04:00
lazy_static = "1.4"
memchr = "2"