aboutsummaryrefslogtreecommitdiff
path: root/lib/std/compress.zig
AgeCommit message (Collapse)Author
2022-06-11stage2: small fixes + adjustments to std testsVeikka Tuominen
2022-06-03std: disable tests that crash stage2Veikka Tuominen
2022-01-23compress: add a deflate compressorHadrien Dorio
Replaces the inflate API from `inflateStream(reader: anytype, window_slice: []u8)` to `decompressor(allocator: mem.Allocator, reader: anytype, dictionary: ?[]const u8)` and `compressor(allocator: mem.Allocator, writer: anytype, options: CompressorOptions)`
2021-08-24remove redundant license headers from zig standard libraryAndrew Kelley
We already have a LICENSE file that covers the Zig Standard Library. We no longer need to remind everyone that the license is MIT in every single file. Previously this was introduced to clarify the situation for a fork of Zig that made Zig's LICENSE file harder to find, and replaced it with their own license that required annual payments to their company. However that fork now appears to be dead. So there is no need to reinforce the copyright notice in every single file.
2021-01-22std: Update `test ""` to `test` where it makes senseLemonBoy
2020-12-31Year++Frank Denis
2020-09-11std: Add a gzip decoderLemonBoy
2020-09-07std: Add DEFLATE and zlib decompressorsLemonBoy