authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-07-04 01:06:43 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-07-04 01:06:43 -07:00
log73b469c6961e50b57cea61814d39237efe25318c
tree1fbb5fe76a2a9dddf2a7d4e1d2ff5694abfecebd
parent21e9824c43eb8d7b4bee9b3d07e80dbca623b82f

deps.zig- put reference to Pkg at top of file


1 files changed, 14 insertions(+), 12 deletions(-)

deps.zig+14-12
......@@ -1,4 +1,6 @@
11const std = @import("std");
2const Pkg = std.build.Pkg;
3const FileSource = std.build.FileSource;
24
35pub const cache = ".zigmod/deps";
46
......@@ -56,20 +58,20 @@ pub const _paths = .{
5658};
5759
5860pub const package_data = struct {
59 pub const _s84v9o48ucb0 = std.build.Pkg{ .name = "ansi", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/nektro/zig-ansi/src/lib.zig" }, .dependencies = &[_]std.build.Pkg{ } };
60 pub const _2ta738wrqbaq = std.build.Pkg{ .name = "known-folders", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/ziglibs/known-folders/known-folders.zig" }, .dependencies = &[_]std.build.Pkg{ } };
61 pub const _0npcrzfdlrvk = std.build.Pkg{ .name = "licenses", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/nektro/zig-licenses/src/lib.zig" }, .dependencies = &[_]std.build.Pkg{ } };
62 pub const _9k24gimke1an = std.build.Pkg{ .name = "hzzp", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/truemedian/hzzp/src/main.zig" }, .dependencies = &[_]std.build.Pkg{ } };
63 pub const _csbnipaad8n7 = std.build.Pkg{ .name = "iguanaTLS", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/alexnask/iguanaTLS/src/main.zig" }, .dependencies = &[_]std.build.Pkg{ } };
64 pub const _yyhw90zkzgmu = std.build.Pkg{ .name = "network", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/MasterQ32/zig-network/network.zig" }, .dependencies = &[_]std.build.Pkg{ } };
65 pub const _u9w9dpp6p804 = std.build.Pkg{ .name = "uri", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/MasterQ32/zig-uri/uri.zig" }, .dependencies = &[_]std.build.Pkg{ } };
66 pub const _ejw82j2ipa0e = std.build.Pkg{ .name = "zfetch", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/truemedian/zfetch/src/main.zig" }, .dependencies = &[_]std.build.Pkg{ _9k24gimke1an, _csbnipaad8n7, _yyhw90zkzgmu, _u9w9dpp6p804, } };
67 pub const _ocmr9rtohgcc = std.build.Pkg{ .name = "json", .path = std.build.FileSource{ .path = cache ++ "/git/github.com/nektro/zig-json/src/lib.zig" }, .dependencies = &[_]std.build.Pkg{ } };
68 pub const _tnj3qf44tpeq = std.build.Pkg{ .name = "range", .path = std.build.FileSource{ .path = cache ++ "/v/http/aquila.red/1/nektro/range/v0.1.tar.gz/d2f72fdd/src/lib.zig" }, .dependencies = &[_]std.build.Pkg{ } };
69 pub const _89ujp8gq842x = std.build.Pkg{ .name = "zigmod", .path = std.build.FileSource{ .path = cache ++ "/../../src/lib.zig" }, .dependencies = &[_]std.build.Pkg{ _s84v9o48ucb0, _2ta738wrqbaq, _0npcrzfdlrvk, _ejw82j2ipa0e, _ocmr9rtohgcc, _tnj3qf44tpeq, } };
61 pub const _s84v9o48ucb0 = Pkg{ .name = "ansi", .path = FileSource{ .path = cache ++ "/git/github.com/nektro/zig-ansi/src/lib.zig" }, .dependencies = &[_]Pkg{ } };
62 pub const _2ta738wrqbaq = Pkg{ .name = "known-folders", .path = FileSource{ .path = cache ++ "/git/github.com/ziglibs/known-folders/known-folders.zig" }, .dependencies = &[_]Pkg{ } };
63 pub const _0npcrzfdlrvk = Pkg{ .name = "licenses", .path = FileSource{ .path = cache ++ "/git/github.com/nektro/zig-licenses/src/lib.zig" }, .dependencies = &[_]Pkg{ } };
64 pub const _9k24gimke1an = Pkg{ .name = "hzzp", .path = FileSource{ .path = cache ++ "/git/github.com/truemedian/hzzp/src/main.zig" }, .dependencies = &[_]Pkg{ } };
65 pub const _csbnipaad8n7 = Pkg{ .name = "iguanaTLS", .path = FileSource{ .path = cache ++ "/git/github.com/alexnask/iguanaTLS/src/main.zig" }, .dependencies = &[_]Pkg{ } };
66 pub const _yyhw90zkzgmu = Pkg{ .name = "network", .path = FileSource{ .path = cache ++ "/git/github.com/MasterQ32/zig-network/network.zig" }, .dependencies = &[_]Pkg{ } };
67 pub const _u9w9dpp6p804 = Pkg{ .name = "uri", .path = FileSource{ .path = cache ++ "/git/github.com/MasterQ32/zig-uri/uri.zig" }, .dependencies = &[_]Pkg{ } };
68 pub const _ejw82j2ipa0e = Pkg{ .name = "zfetch", .path = FileSource{ .path = cache ++ "/git/github.com/truemedian/zfetch/src/main.zig" }, .dependencies = &[_]Pkg{ _9k24gimke1an, _csbnipaad8n7, _yyhw90zkzgmu, _u9w9dpp6p804, } };
69 pub const _ocmr9rtohgcc = Pkg{ .name = "json", .path = FileSource{ .path = cache ++ "/git/github.com/nektro/zig-json/src/lib.zig" }, .dependencies = &[_]Pkg{ } };
70 pub const _tnj3qf44tpeq = Pkg{ .name = "range", .path = FileSource{ .path = cache ++ "/v/http/aquila.red/1/nektro/range/v0.1.tar.gz/d2f72fdd/src/lib.zig" }, .dependencies = &[_]Pkg{ } };
71 pub const _89ujp8gq842x = Pkg{ .name = "zigmod", .path = FileSource{ .path = cache ++ "/../../src/lib.zig" }, .dependencies = &[_]Pkg{ _s84v9o48ucb0, _2ta738wrqbaq, _0npcrzfdlrvk, _ejw82j2ipa0e, _ocmr9rtohgcc, _tnj3qf44tpeq, } };
7072};
7173
72pub const packages = &[_]std.build.Pkg{
74pub const packages = &[_]Pkg{
7375 package_data._89ujp8gq842x,
7476};
7577