Skip to content

Commit

Permalink
Update Zig SDK dependencies (#712)
Browse files Browse the repository at this point in the history
* update deps

* add config to test

* swap to debug allocator

* bump version

* update example deps
  • Loading branch information
jmstevers authored Feb 27, 2025
1 parent cab1456 commit a7df175
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions examples/zig/httpz/hello-world/build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
.version = "0.0.0",
.dependencies = .{
.httpz = .{
.url = "git+https://github.com/karlseguin/http.zig?ref=master#a691d731047e9a5a79d71ac594cb8f5fad1d0705",
.hash = "122072c92285c8c44055eb45058b834d1e7ecd46a5704d58a207103c39fb5922b8f5",
.url = "git+https://github.com/karlseguin/http.zig?ref=master#f16b296a2772be97e48a57259c004aa6584a02c6",
.hash = "1220e524a72c18aa2585f326902066fda544c5df0cf6618eea885b04041204dc5d7f",
},
.datastar = .{
.path = "../../../../sdk/zig/",
Expand Down
2 changes: 1 addition & 1 deletion examples/zig/httpz/hello-world/src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const httpz = @import("httpz");
const datastar = @import("datastar").httpz;

pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
var gpa = std.heap.DebugAllocator(.{}){};
defer _ = gpa.deinit();
const allocator = gpa.allocator();

Expand Down
2 changes: 1 addition & 1 deletion examples/zig/tokamak/hello-world/build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.dependencies = .{
.tokamak = .{
.url = "git+https://github.com/cztomsik/tokamak#857fa78a6fc77c4effa235ef049b8a6461120e5d",
.hash = "1220ddbe12aa69b3293f0abd7078ff93c309b4f4383e18cbe24b163e4ee4b2befa49",
.hash = "122071c2c0adaa3fa3a27a872fdc0b2e762db515e3ef8c5b2225332141500e13f110",
},
.datastar = .{
.path = "../../../../sdk/zig",
Expand Down
2 changes: 2 additions & 0 deletions sdk/zig/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ pub fn build(b: *std.Build) void {
},
});

tests.root_module.addOptions("config", options);

tests.root_module.addImport("httpz", httpz);
tests.root_module.addImport("tokamak", tokamak);

Expand Down
10 changes: 5 additions & 5 deletions sdk/zig/build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.{
.name = "datastar",
.version = "1.0.0-beta.1",
.version = "1.0.0-beta.2",
.dependencies = .{
.httpz = .{
.url = "git+https://github.com/karlseguin/http.zig?ref=master#a691d731047e9a5a79d71ac594cb8f5fad1d0705",
.hash = "122072c92285c8c44055eb45058b834d1e7ecd46a5704d58a207103c39fb5922b8f5",
.url = "git+https://github.com/karlseguin/http.zig?ref=master#f16b296a2772be97e48a57259c004aa6584a02c6",
.hash = "1220e524a72c18aa2585f326902066fda544c5df0cf6618eea885b04041204dc5d7f",
},
.tokamak = .{
.url = "git+https://github.com/cztomsik/tokamak#857fa78a6fc77c4effa235ef049b8a6461120e5d",
.hash = "1220ddbe12aa69b3293f0abd7078ff93c309b4f4383e18cbe24b163e4ee4b2befa49",
.url = "git+https://github.com/cztomsik/tokamak#88b6875782fa03b9a8408a80e142883968a59788",
.hash = "122071c2c0adaa3fa3a27a872fdc0b2e762db515e3ef8c5b2225332141500e13f110",
},
},
.paths = .{
Expand Down

0 comments on commit a7df175

Please sign in to comment.