This commit is contained in:
Wilson Lin 2020-01-15 23:02:58 +11:00
parent 26bd8920ee
commit 90a347d03b
5 changed files with 12 additions and 12 deletions

8
Cargo.lock generated
View File

@ -88,7 +88,7 @@ dependencies = [
[[package]]
name = "hyperbuild"
version = "0.0.12"
version = "0.0.13"
dependencies = [
"cascade 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"fastrie 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
@ -124,7 +124,7 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -205,7 +205,7 @@ dependencies = [
[[package]]
name = "rand"
version = "0.7.2"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
@ -419,7 +419,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5"
"checksum proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0319972dcae462681daf4da1adeeaa066e3ebd29c69be96c6abb1259d2ee2bcc"
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412"
"checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"

View File

@ -7,7 +7,7 @@ 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"
version = "0.0.12"
version = "0.0.13"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
include = ["/gen/*.json", "/src/**/*", "/build.rs", "/Cargo.toml", "/LICENSE", "/README.md"]

View File

@ -27,9 +27,9 @@ Used average of results from running on [common web pages](./bench/tests). See [
##### Get
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.12-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.12-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.12-linux-x86_64)
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.13-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.13-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.13-linux-x86_64)
##### Use
@ -46,7 +46,7 @@ hyperbuild --src /path/to/src.html --out /path/to/output.min.html
```toml
[dependencies]
hyperbuild = "0.0.12"
hyperbuild = "0.0.13"
```
##### Use

View File

@ -1,7 +1,7 @@
[package]
name = "hyperbuild-nodejs"
publish = false
version = "0.0.12"
version = "0.0.13"
authors = ["Wilson Lin <code@wilsonl.in>"]
license = "MIT"
build = "build.rs"
@ -16,5 +16,5 @@ crate-type = ["cdylib"]
neon-build = "0.3.3"
[dependencies]
hyperbuild = "0.0.12"
hyperbuild = "0.0.13"
neon = "0.3.3"

View File

@ -1,6 +1,6 @@
{
"name": "hyperbuild",
"version": "0.0.12",
"version": "0.0.13",
"description": "One-pass in-place HTML minifier written in Rust with context-aware whitespace handling",
"main": "lib/index.js",
"repository": {