minify-html/Cargo.toml

24 lines
791 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-05-12 03:26:23 -04:00
version = "0.0.45"
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"] }
2019-12-25 04:44:51 -05:00
structopt = "0.3.5"
[profile.release]
panic = 'abort'