diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2025-02-19 01:30:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-19 01:30:11 +0100 |
| commit | d0c1e1c0e8854a006d40f5faf1a5809af6fb61e2 (patch) | |
| tree | 50874aad0e2fede062773f098c0cc97c8b468b9b | |
| parent | 960b1221365f5ba113c837ea57e9bf5b8d146cf4 (diff) | |
| parent | 30c7956aed5438547334aa8c91d2921f8ad390e8 (diff) | |
| download | rust-d0c1e1c0e8854a006d40f5faf1a5809af6fb61e2.tar.gz rust-d0c1e1c0e8854a006d40f5faf1a5809af6fb61e2.zip | |
Rollup merge of #137177 - GuillaumeGomez:update-minifier, r=notriddle
Update `minifier-rs` version to `0.3.5` Encountered a bug around handling of `*` which blocked me for something I'm working on. Also includes multiple fixes from ```@notriddle.``` r? ```@notriddle```
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | src/librustdoc/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index bb17717aceb..22a349b2d32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2211,9 +2211,9 @@ dependencies = [ [[package]] name = "minifier" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cf47565b1430f5fe6c81d3afcb4b835271348d7eb35294a4d592e38dd09ea22" +checksum = "9bfdc64e2f805f3d12965f10522000bae36e88d2cfea44112331f467d4f4bf68" [[package]] name = "minimal-lexical" diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml index c593cdcbcd2..c07cc4dc347 100644 --- a/src/librustdoc/Cargo.toml +++ b/src/librustdoc/Cargo.toml @@ -13,7 +13,7 @@ rinja = { version = "0.3", default-features = false, features = ["config"] } base64 = "0.21.7" itertools = "0.12" indexmap = "2" -minifier = { version = "0.3.4", default-features = false } +minifier = { version = "0.3.5", default-features = false } pulldown-cmark-old = { version = "0.9.6", package = "pulldown-cmark", default-features = false } regex = "1" rustdoc-json-types = { path = "../rustdoc-json-types" } |
