mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 22:34:28 +00:00
delete some bad readers/writers add limited reader update TLS about to do something drastic to compress
19 lines
471 B
Zig
19 lines
471 B
Zig
//! Compression algorithms.
|
|
|
|
pub const flate = @import("compress/flate.zig");
|
|
pub const gzip = @import("compress/gzip.zig");
|
|
pub const lzma = @import("compress/lzma.zig");
|
|
pub const lzma2 = @import("compress/lzma2.zig");
|
|
pub const xz = @import("compress/xz.zig");
|
|
pub const zlib = @import("compress/zlib.zig");
|
|
pub const zstd = @import("compress/zstandard.zig");
|
|
|
|
test {
|
|
_ = flate;
|
|
_ = gzip;
|
|
_ = lzma;
|
|
_ = lzma2;
|
|
_ = xz;
|
|
_ = zlib;
|
|
_ = zstd;
|
|
}
|