Files
rust/src
bors a1f180bde3 Auto merge of #43147 - oyvindln:deflate_fix, r=alexcrichton
Use similar compression settings as before updating to use flate2

Fixes #42879

(My first PR to rust-lang yay)

This changes the compression settings back to how they were before the change to use the flate2 crate rather than the in-tree flate library. The specific changes are to use the `Fast` compression level (which should be equivialent to what was used before), and use a raw deflate stream rather than wrapping the stream in a zlib wrapper. The [zlib](https://tools.ietf.org/html/rfc1950) wrapper adds an extra 2 bytes of header data, and 4 bytes for a checksum at the end. The change to use a faster compression level did give some compile speedups in the past (see #37298). Having to calculate a checksum also added a small overhead, which didn't exist before the change to flate2.

r? @alexcrichton
2017-07-11 07:42:13 +00:00
..
2017-07-10 11:43:02 -06:00
2017-07-10 11:43:02 -06:00
2017-06-13 23:37:34 -07:00
2017-06-19 22:25:05 -07:00
2017-06-20 13:42:52 +02:00
2017-07-07 01:22:48 +03:00
2017-06-19 22:25:05 -07:00
2017-06-20 07:11:29 -07:00
2017-06-19 22:25:05 -07:00