minify-html/Cargo.toml

25 lines
774 B
TOML
Raw Normal View History

2019-12-15 03:37:53 -05:00
[package]
name = "hyperbuild"
2020-01-19 03:19:33 -05:00
description = "Fast one-pass in-place HTML minifier written in Rust with context-aware 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-04 02:00:53 -04:00
version = "0.1.8"
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]
lazy_static = "1.4.0"
2020-07-03 06:37:52 -04:00
regex = "1.3.9"
memchr = "2.3.3"
[profile.release]
panic = 'abort'