zig: update to zig-0.15.0-dev.703+597dd328e

This commit is contained in:
CJ van den Berg 2025-06-04 22:37:21 +02:00
parent 0e3806ab98
commit 6fb364d64b
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 6 additions and 3 deletions

View file

@ -1 +1 @@
0.14.1 0.15.0-dev.703+597dd328e

View file

@ -27,8 +27,8 @@
.hash = "fuzzig-0.1.1-AAAAALNIAQBmbHr-MPalGuR393Vem2pTQXI7_LXeNJgX", .hash = "fuzzig-0.1.1-AAAAALNIAQBmbHr-MPalGuR393Vem2pTQXI7_LXeNJgX",
}, },
.vaxis = .{ .vaxis = .{
.url = "https://github.com/neurocyte/libvaxis/archive/6137cb4c44a7350996f0946a069739e5075d1f23.tar.gz", .url = "https://github.com/neurocyte/libvaxis/archive/64a29f4f91292bc79dc9afb9a254cbdfb35e29a6.tar.gz",
.hash = "vaxis-0.1.0-BWNV_HwOCQCw5wTV63hQGSc1QJzsNcytH6sGf1GBc0hP", .hash = "vaxis-0.1.0-BWNV_KEOCQCzedUR1prWhPUcgsRmw8f-r5JBc3s4DLJf",
}, },
.zeit = .{ .zeit = .{
.url = "https://github.com/rockorager/zeit/archive/8fd203f85f597f16e0a525c1f1ca1e0bffded809.tar.gz", .url = "https://github.com/rockorager/zeit/archive/8fd203f85f597f16e0a525c1f1ca1e0bffded809.tar.gz",

View file

@ -1222,6 +1222,7 @@ pub const LoadFromFileError = error{
LockViolation, LockViolation,
ProcessNotFound, ProcessNotFound,
Canceled, Canceled,
PermissionDenied,
}; };
pub fn load_from_file( pub fn load_from_file(
@ -1327,6 +1328,8 @@ pub const StoreToFileError = error{
SystemResources, SystemResources,
Unexpected, Unexpected,
WouldBlock, WouldBlock,
PermissionDenied,
MessageTooBig,
}; };
pub fn store_to_existing_file_const(self: *const Self, file_path: []const u8) StoreToFileError!void { pub fn store_to_existing_file_const(self: *const Self, file_path: []const u8) StoreToFileError!void {