updated zul dependency

This commit is contained in:
Ben Jordan 2025-09-17 22:55:22 -04:00
parent 3288c1baed
commit ed326c74b9
No known key found for this signature in database
2 changed files with 9 additions and 5 deletions

View File

@ -3,7 +3,6 @@ const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const lib = b.addLibrary(.{
.name = "jetcommon",
.root_module = b.createModule(.{
@ -13,9 +12,14 @@ pub fn build(b: *std.Build) void {
}),
});
const jetcommon_module = b.addModule("jetcommon", .{ .root_source_file = b.path("src/jetcommon.zig") });
const jetcommon_module = b.addModule("jetcommon", .{
.root_source_file = b.path("src/jetcommon.zig"),
});
const zul_module = b.dependency("zul", .{ .target = target, .optimize = optimize }).module("zul");
const zul_module = b.dependency("zul", .{
.target = target,
.optimize = optimize,
}).module("zul");
jetcommon_module.addImport("zul", zul_module);
lib.root_module.addImport("zul", zul_module);

View File

@ -4,8 +4,8 @@
.version = "0.1.0",
.dependencies = .{
.zul = .{
.url = "https://github.com/karlseguin/zul/archive/9dff2f294807b12944bc1025b121f33c61748767.tar.gz",
.hash = "zul-0.0.0-1oDot06QBwAogVwyG0VAUIUbJnOOfsK7f25t66lFJZi7",
.url = "https://github.com/karlseguin/zul/archive/e770047f208cf4538fcd9fc64550c84fd5492fc4.tar.gz",
.hash = "zul-0.0.0-1oDot9yRBwDA_ovd6GC1M_ViW3LarywMaGrH6vcuEjqv",
},
},