about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-03-07 18:39:04 +0100
committerGitHub <noreply@github.com>2022-03-07 18:39:04 +0100
commitb3261f8ce4e0a09e0534794a30f2570abe85be63 (patch)
treea5c1e1223cf1454ff8fa5c593c7238bab9937964
parent77562f2350c4dbe2d19a253f70046fb3edd9baa6 (diff)
parenta496fa4fc15276da2a47b84bcc43824a7c0c667b (diff)
downloadrust-b3261f8ce4e0a09e0534794a30f2570abe85be63.tar.gz
rust-b3261f8ce4e0a09e0534794a30f2570abe85be63.zip
Rollup merge of #94700 - GuillaumeGomez:update-minifier, r=notriddle
rustdoc: Update minifier version

This new version includes a fix for the CSS minifier which was badly handling inline media queries like ``@import` 'i';`.

r? `@notriddle`
-rw-r--r--Cargo.lock4
-rw-r--r--src/librustdoc/Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1af01a42afd..fd8d461c545 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2273,9 +2273,9 @@ dependencies = [
 
 [[package]]
 name = "minifier"
-version = "0.0.42"
+version = "0.0.43"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "55a1388517eda8a68875243b650c26997e055a33d82571b5a0349129faef7d99"
+checksum = "d81352bda6f4d04af1720afaa762054f66e16caffd93c1f86461a1c0ac4e695e"
 dependencies = [
  "macro-utils",
 ]
diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml
index 18a3498e34e..cc5c583bea8 100644
--- a/src/librustdoc/Cargo.toml
+++ b/src/librustdoc/Cargo.toml
@@ -11,7 +11,7 @@ arrayvec = { version = "0.7", default-features = false }
 askama = { version = "0.11", default-features = false, features = ["config"] }
 atty = "0.2"
 pulldown-cmark = { version = "0.9", default-features = false }
-minifier = "0.0.42"
+minifier = "0.0.43"
 rayon = "1.5.1"
 serde = { version = "1.0", features = ["derive"] }
 serde_json = "1.0"