diff options
| author | bors <bors@rust-lang.org> | 2022-08-21 04:21:06 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-08-21 04:21:06 +0000 |
| commit | aa8e761defc245d08d2cf226786def8a8bb56e53 (patch) | |
| tree | ec52bb97f1bc81ab42d157b9f406f580544a5782 | |
| parent | f2858b5cd32f3689ad83de77cacfa1ea2f533793 (diff) | |
| parent | fb62f2804fd9de510f1af6277641e5c5573df1c7 (diff) | |
| download | rust-aa8e761defc245d08d2cf226786def8a8bb56e53.tar.gz rust-aa8e761defc245d08d2cf226786def8a8bb56e53.zip | |
Auto merge of #100624 - GuillaumeGomez:update-minifier-version, r=nnethercote
Update minifier version to 0.2.2 Following [this PR](https://github.com/GuillaumeGomez/minifier-rs/pull/98), the CSS minification should be much faster now (thanks to `@nnethercote).` r? `@nnethercote`
| -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 293fc30903d..3a35985836c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2415,9 +2415,9 @@ dependencies = [ [[package]] name = "minifier" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac96d1e7a65f206443f95afff6de8f1690c77c97d6fc9c9bb2d2cd0662e9ff9f" +checksum = "8eb022374af2f446981254e6bf9efb6e2c9e1a53176d395fca02792fd4435729" [[package]] name = "minimal-lexical" diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml index ddaa7438e17..cbdfea89efb 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.2", default-features = false } -minifier = "0.2.1" +minifier = "0.2.2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" smallvec = "1.8.1" |
