diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-05-15 14:26:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-15 14:26:59 +0200 |
| commit | 934e37aeb4c3dfd220e044827b91dcc106dd331b (patch) | |
| tree | 6a3d46248ee900492ef497569bbc6e6ab2c3b349 /src/Cargo.lock | |
| parent | 91c648b9c1ea2a12882d0e1a643586c71f71bb11 (diff) | |
| parent | e2db0a5630a39fc1725cae1e804120cff75dc1cb (diff) | |
| download | rust-934e37aeb4c3dfd220e044827b91dcc106dd331b.tar.gz rust-934e37aeb4c3dfd220e044827b91dcc106dd331b.zip | |
Rollup merge of #50632 - GuillaumeGomez:minification, r=ollie27
Add minification process r? @QuietMisdreavus
Diffstat (limited to 'src/Cargo.lock')
| -rw-r--r-- | src/Cargo.lock | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Cargo.lock b/src/Cargo.lock index 6103c77ec22..ce9fc63230d 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -1199,6 +1199,14 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] +name = "minifier" +version = "0.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "regex 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "miniz-sys" version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2279,6 +2287,7 @@ dependencies = [ name = "rustdoc" version = "0.0.0" dependencies = [ + "minifier 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "pulldown-cmark 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3119,6 +3128,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum mdbook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "90b5a8d7e341ceee5db3882a06078d42661ddcfa2b3687319cc5da76ec4e782f" "checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" +"checksum minifier 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "26f3e36a4db1981b16567e4abfd6ddc3641bc9b950bdc868701f656bf9b74bdd" "checksum miniz-sys 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "609ce024854aeb19a0ef7567d348aaa5a746b32fb72e336df7fcc16869d7e2b4" "checksum miow 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9224c91f82b3c47cf53dcf78dfaa20d6888fbcc5d272d5f2fcdf8a697f3c987d" "checksum nibble_vec 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c8d77f3db4bce033f4d04db08079b2ef1c3d02b44e86f25d08886fafa7756ffa" |
