mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
std.compress.zstd: renamed from std.compress.zstandard
This commit is contained in:
parent
32cf1d7cbf
commit
765a6d3413
1 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ 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 zstandard = @import("compress/zstandard.zig");
|
||||
pub const zstd = @import("compress/zstandard.zig");
|
||||
|
||||
pub fn HashedReader(
|
||||
comptime ReaderType: anytype,
|
||||
|
|
@ -45,5 +45,5 @@ test {
|
|||
_ = lzma2;
|
||||
_ = xz;
|
||||
_ = zlib;
|
||||
_ = zstandard;
|
||||
_ = zstd;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue