mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
This passes tests but it doesn't provide as big a window size as is required to decompress larger streams. The next commit in this branch will work towards that, without introducing an additional buffer.
20 lines
466 B
Zig
20 lines
466 B
Zig
//! Compression algorithms.
|
|
|
|
pub const flate = @import("compress/flate.zig");
|
|
pub const gzip = @import("compress/gzip.zig");
|
|
pub const zlib = @import("compress/zlib.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;
|
|
_ = gzip;
|
|
_ = zlib;
|
|
}
|