lambda-zig/deps.zig

23 lines
705 B
Zig
Raw Normal View History

2021-09-15 15:57:21 +00:00
const std = @import("std");
pub const pkgs = struct {
pub const http = std.build.Pkg{
.name = "http",
.path = .{ .path = ".gyro/http-ducdetronquito-0.1.3-02dd386aa7452ba02887b98078627854/pkg/src/main.zig" },
};
pub fn addAllTo(artifact: *std.build.LibExeObjStep) void {
@setEvalBranchQuota(1_000_000);
inline for (std.meta.declarations(pkgs)) |decl| {
if (decl.is_pub and decl.data == .Var) {
artifact.addPackage(@field(pkgs, decl.name));
}
}
}
};
pub const exports = struct {
};
pub const base_dirs = struct {
pub const http = ".gyro/http-ducdetronquito-0.1.3-02dd386aa7452ba02887b98078627854/pkg";
};