Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frameworks/Zig/httpz/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ pub fn build(b: *std.Build) !void {
const dep_opts = .{ .target = target, .optimize = optimize };

const exe = b.addExecutable(.{
.name = "httpz",
.name = 'httpz',
.root_source_file = b.path("src/main.zig"),
.target = target,
// .target = target, // Removed for Zig 0.14.0 compatibility
.optimize = optimize,
});

Expand Down
2 changes: 1 addition & 1 deletion frameworks/Zig/httpz/build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.{ .name = "Zap testing", .version = "0.1.1", .paths = .{
.{ .name = .httpz_testing, .version = "0.2.0", .fingerprint = 0x586e7c8a6a8317c3, .paths = .{
"build.zig",
"build.zig.zon",
"src",
Expand Down
2 changes: 1 addition & 1 deletion frameworks/Zig/zap/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# [Zap](https://github.com/zigzap/zap) - Blazingly fast backends in zig
# [Zap](https://github.com/zigzap/zap) - Blazingly fast backends in zig 0.14.1

## Description

Expand Down
3 changes: 2 additions & 1 deletion frameworks/Zig/zap/zap.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM fedora:40 AS build
# Using zig 0.14.1
FROM fedora:42 AS build

WORKDIR /zap

Expand Down
Loading