diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-01-26 23:45:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-26 23:45:24 +0100 |
| commit | 4276626299fdf428d6e9834ca925b11919478047 (patch) | |
| tree | 3069d397cf6e5043d72eff0be6865e947906be52 | |
| parent | 253f64c9c692549f73b902b494c573d6a411e0f5 (diff) | |
| parent | 91f39315e8809b016eeb0e3e46c5a327a74116c6 (diff) | |
| download | rust-4276626299fdf428d6e9834ca925b11919478047.tar.gz rust-4276626299fdf428d6e9834ca925b11919478047.zip | |
Rollup merge of #93338 - GuillaumeGomez:update-minifier, r=notriddle
Update minifier crate version to 0.0.42 Some issues on the CSS minification. 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 aa942065845..738f33d3fa2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2298,9 +2298,9 @@ dependencies = [ [[package]] name = "minifier" -version = "0.0.41" +version = "0.0.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5594542d20834f2b974f5e5fb8e0cf1c67a2119dcadc29ef5d93a081fb30cc08" +checksum = "55a1388517eda8a68875243b650c26997e055a33d82571b5a0349129faef7d99" dependencies = [ "macro-utils", ] diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml index 67d167e86df..45285c1f442 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.41" +minifier = "0.0.42" rayon = "1.5.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" |
