mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
17 lines
372 B
Zig
17 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;
|
|
}
|