about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-08-25 16:51:06 +0200
committerGitHub <noreply@github.com>2024-08-25 16:51:06 +0200
commitc6f7b1f3905eaa2f52571ff6c0688d68332c6d09 (patch)
tree849e95818a8dd7062113eb968d75db8a6af3a238
parent9c59e97dedcbeb747fb34a849ce445d836424f04 (diff)
parentc36b5634cfde381fda497f71602158ce2c27ae5e (diff)
downloadrust-c6f7b1f3905eaa2f52571ff6c0688d68332c6d09.tar.gz
rust-c6f7b1f3905eaa2f52571ff6c0688d68332c6d09.zip
Rollup merge of #129511 - GuillaumeGomez:update-minifier, r=notriddle
Update minifier to 0.3.1

It adds support for escaped characters.

PR is https://github.com/GuillaumeGomez/minifier-rs/pull/111.

r? ````@notriddle````
-rw-r--r--Cargo.lock7
-rw-r--r--src/librustdoc/Cargo.toml2
2 files changed, 6 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ddcc5b0864b..cc960fd9a43 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2226,9 +2226,12 @@ dependencies = [
 
 [[package]]
 name = "minifier"
-version = "0.3.0"
+version = "0.3.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "95bbbf96b9ac3482c2a25450b67a15ed851319bc5fabf3b40742ea9066e84282"
+checksum = "9aa3f302fe0f8de065d4a2d1ed64f60204623cac58b80cd3c2a83a25d5a7d437"
+dependencies = [
+ "clap",
+]
 
 [[package]]
 name = "minimal-lexical"
diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml
index b3fccbf6456..34332de80b3 100644
--- a/src/librustdoc/Cargo.toml
+++ b/src/librustdoc/Cargo.toml
@@ -12,7 +12,7 @@ rinja = { version = "0.3", default-features = false, features = ["config"] }
 base64 = "0.21.7"
 itertools = "0.12"
 indexmap = "2"
-minifier = "0.3.0"
+minifier = "0.3.1"
 pulldown-cmark-old = { version = "0.9.6", package = "pulldown-cmark", default-features = false }
 regex = "1"
 rustdoc-json-types = { path = "../rustdoc-json-types" }