Skip to content

Commit c6f7b1f

Browse files
authored
Rollup merge of rust-lang#129511 - GuillaumeGomez:update-minifier, r=notriddle
Update minifier to 0.3.1 It adds support for escaped characters. PR is GuillaumeGomez/minifier-rs#111. r? ````@notriddle````
2 parents 9c59e97 + c36b563 commit c6f7b1f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Cargo.lock

+5-2
Original file line numberDiff line numberDiff line change
@@ -2226,9 +2226,12 @@ dependencies = [
22262226

22272227
[[package]]
22282228
name = "minifier"
2229-
version = "0.3.0"
2229+
version = "0.3.1"
22302230
source = "registry+https://github.com/rust-lang/crates.io-index"
2231-
checksum = "95bbbf96b9ac3482c2a25450b67a15ed851319bc5fabf3b40742ea9066e84282"
2231+
checksum = "9aa3f302fe0f8de065d4a2d1ed64f60204623cac58b80cd3c2a83a25d5a7d437"
2232+
dependencies = [
2233+
"clap",
2234+
]
22322235

22332236
[[package]]
22342237
name = "minimal-lexical"

src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rinja = { version = "0.3", default-features = false, features = ["config"] }
1212
base64 = "0.21.7"
1313
itertools = "0.12"
1414
indexmap = "2"
15-
minifier = "0.3.0"
15+
minifier = "0.3.1"
1616
pulldown-cmark-old = { version = "0.9.6", package = "pulldown-cmark", default-features = false }
1717
regex = "1"
1818
rustdoc-json-types = { path = "../rustdoc-json-types" }

0 commit comments

Comments
 (0)