pierrec / lz4

LZ4 compression and decompression in pure Go
BSD 3-Clause "New" or "Revised" License
878 stars 142 forks source link

avoid uncompressed duplicates in testdata to make module smaller #202

Open mvdan opened 1 year ago

mvdan commented 1 year ago

I was investigating what the largest dependencies were in a project by measuring how large the module zips were, and yours stood out at about thirty megabytes. This isn't terrible per se, but it's still surprisingly large, and still slows down some builds depending on the internet speed.

I see that the testdata directory contains some files in both the compressed and uncompressed forms. Have you thought about only keeping the compressed forms?