minify-html/Cargo.toml

29 lines
808 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"
2020-07-12 00:49:00 -04:00
description = "Fast and smart HTML + JS minifier"
license = "MIT"
2020-07-11 11:29:34 -04:00
homepage = "https://github.com/wilsonzlin/minify-html"
readme = "README.md"
keywords = ["html", "compress", "minifier", "minify", "minification"]
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"
2020-07-11 12:42:12 -04:00
version = "0.2.6"
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 = ["esbuild-rs"]
2019-12-15 03:37:53 -05:00
[dependencies]
2020-07-11 08:20:17 -04:00
esbuild-rs = { version = "0.0.5", optional = true }
lazy_static = "1.4.0"
memchr = "2.3.3"
[profile.release]
panic = 'abort'