| 1 | //! Compression algorithms. |
| 2 | |
| 3 | /// gzip and zlib are here. |
| 4 | pub const flate = @import("compress/flate.zig"); |
| 5 | pub const lzma = @import("compress/lzma.zig"); |
| 6 | pub const lzma2 = @import("compress/lzma2.zig"); |
| 7 | pub const xz = @import("compress/xz.zig"); |
| 8 | pub const zstd = @import("compress/zstd.zig"); |
| 9 | |
| 10 | test { |
| 11 | _ = flate; |
| 12 | _ = lzma; |
| 13 | _ = lzma2; |
| 14 | _ = xz; |
| 15 | _ = zstd; |
| 16 | } |