diff options
| author | LeRoyce Pearson <leroycepearson@geemili.xyz> | 2020-03-05 00:07:17 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-05-25 13:48:43 -0400 |
| commit | 3158dc424e48d3da52d9a8f99cba65a4ef850f2e (patch) | |
| tree | 85d8359db4040a7c840dd9e3c05f16383c8337b9 /lib/std/std.zig | |
| parent | 0ecdbdb3cb3d9558b5d2dbd928ead124d98c74ca (diff) | |
| download | zig-3158dc424e48d3da52d9a8f99cba65a4ef850f2e.tar.gz zig-3158dc424e48d3da52d9a8f99cba65a4ef850f2e.zip | |
Partially implement cache hash API in zig
Diffstat (limited to 'lib/std/std.zig')
| -rw-r--r-- | lib/std/std.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/std.zig b/lib/std/std.zig index 376c200200..9920ca3378 100644 --- a/lib/std/std.zig +++ b/lib/std/std.zig @@ -31,6 +31,7 @@ pub const base64 = @import("base64.zig"); pub const build = @import("build.zig"); pub const builtin = @import("builtin.zig"); pub const c = @import("c.zig"); +pub const cache_hash = @import("cache_hash.zig"); pub const coff = @import("coff.zig"); pub const crypto = @import("crypto.zig"); pub const cstr = @import("cstr.zig"); |
