| ... | ... | @@ -1,6 +1,5 @@ |
| 1 | 1 | const Blake3 = @import("crypto.zig").Blake3; |
| 2 | 2 | const fs = @import("fs.zig"); |
| 3 | | const File = fs.File; |
| 4 | 3 | const base64 = @import("base64.zig"); |
| 5 | 4 | const ArrayList = @import("array_list.zig").ArrayList; |
| 6 | 5 | const debug = @import("debug.zig"); |
| ... | ... | @@ -39,7 +38,7 @@ pub const CacheHash = struct { |
| 39 | 38 | blake3: Blake3, |
| 40 | 39 | manifest_dir: []const u8, |
| 41 | 40 | manifest_file_path: ?[]const u8, |
| 42 | | manifest_file: ?File, |
| 41 | manifest_file: ?fs.File, |
| 43 | 42 | manifest_dirty: bool, |
| 44 | 43 | force_check_manifest: bool, |
| 45 | 44 | files: ArrayList(CacheHashFile), |
| ... | ... | @@ -295,7 +294,7 @@ pub const CacheHash = struct { |
| 295 | 294 | } |
| 296 | 295 | }; |
| 297 | 296 | |
| 298 | | fn hash_file(alloc: *Allocator, bin_digest: []u8, handle: *const File) !void { |
| 297 | fn hash_file(alloc: *Allocator, bin_digest: []u8, handle: *const fs.File) !void { |
| 299 | 298 | var blake3 = Blake3.init(); |
| 300 | 299 | var in_stream = handle.inStream().stream; |
| 301 | 300 | |