You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently decompressing the metadata is ~10% (more on slower computers) of the build time of small crates (eg, the tests). Switching to a faster algorithm would bring that down. I think LZ4 is that algorithm:
Compatibly licensed implementation (I think. @graydon? It's 2-clause BSD)
Almost as good a compression ratio as zlib
5x faster decompression than zlib
Much faster than snappy, marginally worse compression.