minify-html/Cargo.toml

23 lines
770 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-06-19 05:17:37 -04:00
version = "0.1.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-01-12 00:29:41 -05:00
phf = { version = "0.8.0", features = ["macros"] }
[profile.release]
panic = 'abort'