diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-11-10 17:43:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-10 17:43:08 +0100 |
| commit | ba094269682fd94105d69fd75391452cbbef8ebc (patch) | |
| tree | 426cd784fc6a56c894814b8565786517042d2705 /src | |
| parent | 2681dcb18988b5c6e080461054cd85d8b6dc6a58 (diff) | |
| parent | bc1c4be2fd14b8f172a4472a2c4926b91cf97bc1 (diff) | |
| download | rust-ba094269682fd94105d69fd75391452cbbef8ebc.tar.gz rust-ba094269682fd94105d69fd75391452cbbef8ebc.zip | |
Rollup merge of #132858 - GuillaumeGomez:update-minifier, r=aDotInTheVoid
Update minifer version to `0.3.2` This version fixes a few lints but the main change is that it makes `clap` dependency optional since it's only used for the binary. r? `@notriddle`
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml index 57b6de67ee8..70749f7cb17 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 = "0.3.1" +minifier = { version = "0.3.2", 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" } |
