zig/lib/std/compress.zig
Andrew Kelley fd4fb10722 std.compress.flate: API reorg and reader/writer updates
A lot of this logic disappears in the face of the new buffered reader
and buffered writer interface.

This is passing ast-check only; semantic analysis to be solved next.
2025-07-01 16:35:29 -07:00

16 lines
372 B
Zig

//! Compression algorithms.
/// gzip and zlib are here.
pub const flate = @import("compress/flate.zig");
pub const lzma = @import("compress/lzma.zig");
pub const lzma2 = @import("compress/lzma2.zig");
pub const xz = @import("compress/xz.zig");
pub const zstd = @import("compress/zstd.zig");
test {
_ = flate;
_ = lzma;
_ = lzma2;
_ = xz;
_ = zstd;
}