minify-html/Cargo.toml

26 lines
769 B
TOML
Raw Normal View History

2019-12-15 03:37:53 -05:00
[package]
name = "hyperbuild"
2020-07-10 06:51:59 -04:00
description = "Fast allocation-less HTML minifier with smart whitespace handling"
license = "MIT"
homepage = "https://github.com/wilsonzlin/hyperbuild"
readme = "README.md"
keywords = ["html", "compress", "minifier", "minify", "minification"]
categories = ["compression", "command-line-utilities", "development-tools::build-utils", "web-programming"]
repository = "https://github.com/wilsonzlin/hyperbuild.git"
2020-07-10 16:15:06 -04:00
version = "0.2.3"
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" }
2019-12-15 03:37:53 -05:00
[dependencies]
2020-07-10 15:37:38 -04:00
esbuild-rs = "0.0.5"
lazy_static = "1.4.0"
memchr = "2.3.3"
regex = "1.3.9"
[profile.release]
panic = 'abort'