| author | |
| committer | |
| log | 185bcfe0fadcf5f85bcb14a59d69983e7aaa77ee |
| tree | 8d4ad0293df1249cd1758675f1ec6cb9bbb70425 |
| parent | 8a2eb27714f842b9a74cbfdfc6dc1bb519edc314 |
7 files changed, 23 insertions(+), 21 deletions(-)
.circleci/config.yml+1-1| ... | @@ -15,7 +15,7 @@ jobs: | ... | @@ -15,7 +15,7 @@ jobs: |
| 15 | - run: git submodule update --init --recursive | 15 | - run: git submodule update --init --recursive |
| 16 | 16 | ||
| 17 | - run: apt -y install xz-utils jq | 17 | - run: apt -y install xz-utils jq |
| 18 | - run: ./download_zig.sh 0.9.0-dev.865+f30aa25cb | 18 | - run: ./download_zig.sh 0.9.0-dev.946+6237dc0ab |
| 19 | - run: zig version | 19 | - run: zig version |
| 20 | - run: zig env | 20 | - run: zig env |
| 21 | - run: zig build -Dbootstrap | 21 | - run: zig build -Dbootstrap |
README.md+1-1| ... | @@ -17,7 +17,7 @@ A package manager for the Zig programming language. | ... | @@ -17,7 +17,7 @@ A package manager for the Zig programming language. |
| 17 | - https://github.com/nektro/zigmod/releases | 17 | - https://github.com/nektro/zigmod/releases |
| 18 | 18 | ||
| 19 | ## Built With | 19 | ## Built With |
| 20 | - Zig master `0.9.0-dev.865+f30aa25cb` | 20 | - Zig master `0.9.0-dev.946+6237dc0ab` |
| 21 | - https://github.com/yaml/libyaml | 21 | - https://github.com/yaml/libyaml |
| 22 | - https://github.com/nektro/zig-ansi | 22 | - https://github.com/nektro/zig-ansi |
| 23 | - https://github.com/ziglibs/known-folders | 23 | - https://github.com/ziglibs/known-folders |
deps.zig+6-6| ... | @@ -43,12 +43,12 @@ const dirs = struct { | ... | @@ -43,12 +43,12 @@ const dirs = struct { |
| 43 | pub const _root = ""; | 43 | pub const _root = ""; |
| 44 | pub const _89ujp8gq842x = cache ++ "/../.."; | 44 | pub const _89ujp8gq842x = cache ++ "/../.."; |
| 45 | pub const _8mdbh0zuneb0 = cache ++ "/v/git/github.com/yaml/libyaml/tag-0.2.5"; | 45 | pub const _8mdbh0zuneb0 = cache ++ "/v/git/github.com/yaml/libyaml/tag-0.2.5"; |
| 46 | pub const _csbnipaad8n7 = cache ++ "/git/github.com/nektro/iguanaTLS"; | ||
| 46 | pub const _s84v9o48ucb0 = cache ++ "/git/github.com/nektro/zig-ansi"; | 47 | pub const _s84v9o48ucb0 = cache ++ "/git/github.com/nektro/zig-ansi"; |
| 47 | pub const _2ta738wrqbaq = cache ++ "/git/github.com/ziglibs/known-folders"; | 48 | pub const _2ta738wrqbaq = cache ++ "/git/github.com/ziglibs/known-folders"; |
| 48 | pub const _0npcrzfdlrvk = cache ++ "/git/github.com/nektro/zig-licenses"; | 49 | pub const _0npcrzfdlrvk = cache ++ "/git/github.com/nektro/zig-licenses"; |
| 49 | pub const _ejw82j2ipa0e = cache ++ "/git/github.com/truemedian/zfetch"; | 50 | pub const _ejw82j2ipa0e = cache ++ "/git/github.com/truemedian/zfetch"; |
| 50 | pub const _9k24gimke1an = cache ++ "/git/github.com/truemedian/hzzp"; | 51 | pub const _9k24gimke1an = cache ++ "/git/github.com/truemedian/hzzp"; |
| 51 | pub const _csbnipaad8n7 = cache ++ "/git/github.com/alexnask/iguanaTLS"; | ||
| 52 | pub const _yyhw90zkzgmu = cache ++ "/git/github.com/MasterQ32/zig-network"; | 52 | pub const _yyhw90zkzgmu = cache ++ "/git/github.com/MasterQ32/zig-network"; |
| 53 | pub const _u9w9dpp6p804 = cache ++ "/git/github.com/MasterQ32/zig-uri"; | 53 | pub const _u9w9dpp6p804 = cache ++ "/git/github.com/MasterQ32/zig-uri"; |
| 54 | pub const _ocmr9rtohgcc = cache ++ "/git/github.com/nektro/zig-json"; | 54 | pub const _ocmr9rtohgcc = cache ++ "/git/github.com/nektro/zig-json"; |
| ... | @@ -69,6 +69,10 @@ pub const package_data = struct { | ... | @@ -69,6 +69,10 @@ pub const package_data = struct { |
| 69 | .c_source_files = &.{ "src/api.c", "src/dumper.c", "src/emitter.c", "src/loader.c", "src/parser.c", "src/reader.c", "src/scanner.c", "src/writer.c" }, | 69 | .c_source_files = &.{ "src/api.c", "src/dumper.c", "src/emitter.c", "src/loader.c", "src/parser.c", "src/reader.c", "src/scanner.c", "src/writer.c" }, |
| 70 | .c_source_flags = &.{ "-DYAML_VERSION_MAJOR=0", "-DYAML_VERSION_MINOR=2", "-DYAML_VERSION_PATCH=5", "-DYAML_VERSION_STRING=\"0.2.5\"", "-DYAML_DECLARE_STATIC=1" }, | 70 | .c_source_flags = &.{ "-DYAML_VERSION_MAJOR=0", "-DYAML_VERSION_MINOR=2", "-DYAML_VERSION_PATCH=5", "-DYAML_VERSION_STRING=\"0.2.5\"", "-DYAML_DECLARE_STATIC=1" }, |
| 71 | }; | 71 | }; |
| 72 | pub const _csbnipaad8n7 = Package{ | ||
| 73 | .directory = dirs._csbnipaad8n7, | ||
| 74 | .pkg = Pkg{ .name = "iguanaTLS", .path = .{ .path = dirs._csbnipaad8n7 ++ "/src/main.zig" }, .dependencies = null }, | ||
| 75 | }; | ||
| 72 | pub const _s84v9o48ucb0 = Package{ | 76 | pub const _s84v9o48ucb0 = Package{ |
| 73 | .directory = dirs._s84v9o48ucb0, | 77 | .directory = dirs._s84v9o48ucb0, |
| 74 | .pkg = Pkg{ .name = "ansi", .path = .{ .path = dirs._s84v9o48ucb0 ++ "/src/lib.zig" }, .dependencies = null }, | 78 | .pkg = Pkg{ .name = "ansi", .path = .{ .path = dirs._s84v9o48ucb0 ++ "/src/lib.zig" }, .dependencies = null }, |
| ... | @@ -85,10 +89,6 @@ pub const package_data = struct { | ... | @@ -85,10 +89,6 @@ pub const package_data = struct { |
| 85 | .directory = dirs._9k24gimke1an, | 89 | .directory = dirs._9k24gimke1an, |
| 86 | .pkg = Pkg{ .name = "hzzp", .path = .{ .path = dirs._9k24gimke1an ++ "/src/main.zig" }, .dependencies = null }, | 90 | .pkg = Pkg{ .name = "hzzp", .path = .{ .path = dirs._9k24gimke1an ++ "/src/main.zig" }, .dependencies = null }, |
| 87 | }; | 91 | }; |
| 88 | pub const _csbnipaad8n7 = Package{ | ||
| 89 | .directory = dirs._csbnipaad8n7, | ||
| 90 | .pkg = Pkg{ .name = "iguanaTLS", .path = .{ .path = dirs._csbnipaad8n7 ++ "/src/main.zig" }, .dependencies = null }, | ||
| 91 | }; | ||
| 92 | pub const _yyhw90zkzgmu = Package{ | 92 | pub const _yyhw90zkzgmu = Package{ |
| 93 | .directory = dirs._yyhw90zkzgmu, | 93 | .directory = dirs._yyhw90zkzgmu, |
| 94 | .pkg = Pkg{ .name = "network", .path = .{ .path = dirs._yyhw90zkzgmu ++ "/network.zig" }, .dependencies = null }, | 94 | .pkg = Pkg{ .name = "network", .path = .{ .path = dirs._yyhw90zkzgmu ++ "/network.zig" }, .dependencies = null }, |
| ... | @@ -135,7 +135,7 @@ pub const package_data = struct { | ... | @@ -135,7 +135,7 @@ pub const package_data = struct { |
| 135 | }; | 135 | }; |
| 136 | pub const _89ujp8gq842x = Package{ | 136 | pub const _89ujp8gq842x = Package{ |
| 137 | .directory = dirs._89ujp8gq842x, | 137 | .directory = dirs._89ujp8gq842x, |
| 138 | .pkg = Pkg{ .name = "zigmod", .path = .{ .path = dirs._89ujp8gq842x ++ "/src/lib.zig" }, .dependencies = &.{ _s84v9o48ucb0.pkg.?, _2ta738wrqbaq.pkg.?, _0npcrzfdlrvk.pkg.?, _ejw82j2ipa0e.pkg.?, _ocmr9rtohgcc.pkg.?, _tnj3qf44tpeq.pkg.?, _2ovav391ivak.pkg.?, _c1xirp1ota5p.pkg.?, _u7sysdckdymi.pkg.? } }, | 138 | .pkg = Pkg{ .name = "zigmod", .path = .{ .path = dirs._89ujp8gq842x ++ "/src/lib.zig" }, .dependencies = &.{ _csbnipaad8n7.pkg.?, _s84v9o48ucb0.pkg.?, _2ta738wrqbaq.pkg.?, _0npcrzfdlrvk.pkg.?, _ejw82j2ipa0e.pkg.?, _ocmr9rtohgcc.pkg.?, _tnj3qf44tpeq.pkg.?, _2ovav391ivak.pkg.?, _c1xirp1ota5p.pkg.?, _u7sysdckdymi.pkg.? } }, |
| 139 | }; | 139 | }; |
| 140 | pub const _o6ogpor87xc2 = Package{ | 140 | pub const _o6ogpor87xc2 = Package{ |
| 141 | .directory = dirs._o6ogpor87xc2, | 141 | .directory = dirs._o6ogpor87xc2, |
docs/README.md+1-1| ... | @@ -10,7 +10,7 @@ The rest of this documentation will assume you already have Zig installed. | ... | @@ -10,7 +10,7 @@ The rest of this documentation will assume you already have Zig installed. |
| 10 | 10 | ||
| 11 | As Zig is still in development itself, if you plan to contribute to Zigmod you will need a master download of Zig. Those can be obtained from https://ziglang.org/download/#release-master. | 11 | As Zig is still in development itself, if you plan to contribute to Zigmod you will need a master download of Zig. Those can be obtained from https://ziglang.org/download/#release-master. |
| 12 | 12 | ||
| 13 | The most recent release Zigmod was verified to work with is `0.9.0-dev.865+f30aa25cb`. | 13 | The most recent release Zigmod was verified to work with is `0.9.0-dev.946+6237dc0ab`. |
| 14 | 14 | ||
| 15 | ## Download | 15 | ## Download |
| 16 | You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source. | 16 | You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source. |
zig.mod+2| ... | @@ -29,6 +29,8 @@ dependencies: | ... | @@ -29,6 +29,8 @@ dependencies: |
| 29 | # -------- | 29 | # -------- |
| 30 | # Entries below this line are only fetched with zigmod itself | 30 | # Entries below this line are only fetched with zigmod itself |
| 31 | 31 | ||
| 32 | - src: git https://github.com/nektro/iguanaTLS | ||
| 33 | |||
| 32 | - src: git https://github.com/nektro/zig-ansi | 34 | - src: git https://github.com/nektro/zig-ansi |
| 33 | - src: git https://github.com/ziglibs/known-folders | 35 | - src: git https://github.com/ziglibs/known-folders |
| 34 | - src: git https://github.com/nektro/zig-licenses | 36 | - src: git https://github.com/nektro/zig-licenses |
zigmod.lock+6-6| ... | @@ -1,14 +1,14 @@ | ... | @@ -1,14 +1,14 @@ |
| 1 | 2 | 1 | 2 |
| 2 | git https://github.com/yaml/libyaml tag-0.2.5 | 2 | git https://github.com/yaml/libyaml tag-0.2.5 |
| 3 | git https://github.com/nektro/iguanaTLS commit-953ad821fae6c920fb82399493663668cd91bde7 | ||
| 3 | git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f | 4 | git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f |
| 4 | git https://github.com/ziglibs/known-folders commit-234b589d3cd0c00f2f675f98fd9674e208fd2bd0 | 5 | git https://github.com/ziglibs/known-folders commit-234b589d3cd0c00f2f675f98fd9674e208fd2bd0 |
| 5 | git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e7680 | 6 | git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e7680 |
| 6 | git https://github.com/truemedian/zfetch commit-55b3354ae16089b9e1020580e0b93aa9c698eb8f | 7 | git https://github.com/truemedian/zfetch commit-e65c50fb924701d51fd83826b28948c957aad13e |
| 7 | git https://github.com/truemedian/hzzp commit-492107d44caa2676c7b5aa4e934e1e937232d652 | 8 | git https://github.com/truemedian/hzzp commit-417eb13fefb05835c0534e622b5a6e2dc2fcd3d7 |
| 8 | git https://github.com/alexnask/iguanaTLS commit-0d39a361639ad5469f8e4dcdaea35446bbe54b48 | 9 | git https://github.com/MasterQ32/zig-network commit-9fa47b74f4d66f6e136d8e35bcf30bc5e6c45025 |
| 9 | git https://github.com/MasterQ32/zig-network commit-8e03f59d6d4cb01a7039edb2cf2a6288704a9bae | ||
| 10 | git https://github.com/MasterQ32/zig-uri commit-52cdd2061bec0579519f0d30280597f3a1db8b75 | 10 | git https://github.com/MasterQ32/zig-uri commit-52cdd2061bec0579519f0d30280597f3a1db8b75 |
| 11 | git https://github.com/nektro/zig-json commit-b7c42514db96ad9cb6d57c792499b5f92d516fa1 | 11 | git https://github.com/nektro/zig-json commit-41a4656180a7a460598a53061c07adfbf174c1f4 |
| 12 | git https://github.com/nektro/zig-range commit-890ca308fe09b3d5c866d5cfb3b3d7a95dbf939f | 12 | git https://github.com/nektro/zig-range commit-890ca308fe09b3d5c866d5cfb3b3d7a95dbf939f |
| 13 | git https://github.com/nektro/zig-detect-license commit-d4544410f811c402b866f21f63588d1aae1b2d90 | 13 | git https://github.com/nektro/zig-detect-license commit-d4544410f811c402b866f21f63588d1aae1b2d90 |
| 14 | git https://github.com/nektro/zig-licenses-text commit-3c07c6e4eb0965dafd0b029c632f823631b3169c | 14 | git https://github.com/nektro/zig-licenses-text commit-3c07c6e4eb0965dafd0b029c632f823631b3169c |
| ... | @@ -16,4 +16,4 @@ git https://github.com/nektro/zig-leven commit-8e9f827117ab1418578b692a2325754cc | ... | @@ -16,4 +16,4 @@ git https://github.com/nektro/zig-leven commit-8e9f827117ab1418578b692a2325754cc |
| 16 | git https://github.com/nektro/zig-fs-check commit-dcd8da90fcb8bf3c9887e713bf0ec072bc897dd5 | 16 | git https://github.com/nektro/zig-fs-check commit-dcd8da90fcb8bf3c9887e713bf0ec072bc897dd5 |
| 17 | git https://github.com/nektro/zig-inquirer commit-9a068122c59ac2785f330c37bf4412aed644ed37 | 17 | git https://github.com/nektro/zig-inquirer commit-9a068122c59ac2785f330c37bf4412aed644ed37 |
| 18 | git https://github.com/arqv/ini commit-4b215c2c41cfb0156873bdb0e074b84f5308de4e | 18 | git https://github.com/arqv/ini commit-4b215c2c41cfb0156873bdb0e074b84f5308de4e |
| 19 | git https://github.com/marlersoft/zigwin32 commit-b2cdb54fd83caf8679b8370ead57332df40e90df | 19 | git https://github.com/marlersoft/zigwin32 commit-05b6a1b82abcc3358ee53275f5bd10b71c8f6a94 |
zigmod.sum+6-6| ... | @@ -1,13 +1,13 @@ | ... | @@ -1,13 +1,13 @@ |
| 1 | blake3-22472b867734926b202c055892fb0abb03f91556cd88998e2fe77addb003b1dd v/git/github.com/yaml/libyaml/tag-0.2.5 | 1 | blake3-22472b867734926b202c055892fb0abb03f91556cd88998e2fe77addb003b1dd v/git/github.com/yaml/libyaml/tag-0.2.5 |
| 2 | blake3-50ded64054dd11e855ef88595f16a031bb87f47cba9a1cbe3aa49a408e6c1ae9 git/github.com/nektro/iguanaTLS | ||
| 2 | blake3-3c76436cde156ef2b92eca8e2a38cc2e07f23055422cfe903585bab8bcc47dd9 git/github.com/nektro/zig-ansi | 3 | blake3-3c76436cde156ef2b92eca8e2a38cc2e07f23055422cfe903585bab8bcc47dd9 git/github.com/nektro/zig-ansi |
| 3 | blake3-b55d85de06e4921e85be2fb312c7e023729946be3ac73fe3229b58b173089df8 git/github.com/ziglibs/known-folders | 4 | blake3-b55d85de06e4921e85be2fb312c7e023729946be3ac73fe3229b58b173089df8 git/github.com/ziglibs/known-folders |
| 4 | blake3-42c3fae77ef41d2074e74de2d91cfc66bc591170494b10262dd2aeaea0b60cb5 git/github.com/nektro/zig-licenses | 5 | blake3-42c3fae77ef41d2074e74de2d91cfc66bc591170494b10262dd2aeaea0b60cb5 git/github.com/nektro/zig-licenses |
| 5 | blake3-811ba5947b9d8d4d714ac46d4c045ba6086db18659abc3e4f0af5a5761a7cbdc git/github.com/truemedian/zfetch | 6 | blake3-306356b36b7bef1c8fb8a93806ba3478850091d90af00a66870cf2a35b98c87b git/github.com/truemedian/zfetch |
| 6 | blake3-39ecd07006b01d710e2e98e5b059ae21edea39987414a18aa9b4dae38705440d git/github.com/truemedian/hzzp | 7 | blake3-b844e3e4dd46b90062ae8f5dcb111358132f0be2dbf7a9e7e70257527183c0a3 git/github.com/truemedian/hzzp |
| 7 | blake3-e6901bd7432450d5b22b01880cc7fa3fa2433e766a527206f18b29c67c1349bb git/github.com/alexnask/iguanaTLS | 8 | blake3-3694392c90c86b83cf16b19d24ec08728c724139cb0902b951561971b040803b git/github.com/MasterQ32/zig-network |
| 8 | blake3-c58475c89031a6c71c3de42b4ea8ab74161060c5a5cb4631bf3dab31a87ca6dc git/github.com/MasterQ32/zig-network | ||
| 9 | blake3-030ebb03f1ed21122e681b06786bea6f2f1b810e8eb9f2029d0eee4f4fb3103f git/github.com/MasterQ32/zig-uri | 9 | blake3-030ebb03f1ed21122e681b06786bea6f2f1b810e8eb9f2029d0eee4f4fb3103f git/github.com/MasterQ32/zig-uri |
| 10 | blake3-9978fc554d0d96253bda4db1cc9962976463ca50807aea0de23d49169b3f79be git/github.com/nektro/zig-json | 10 | blake3-114b5a5dd578529803f724918f7626088fd02d74269cccff1e51d61d333cc168 git/github.com/nektro/zig-json |
| 11 | blake3-09698753782139ab4877d08f33235170836f68b73e482b65cdee5637a6addf86 git/github.com/nektro/zig-range | 11 | blake3-09698753782139ab4877d08f33235170836f68b73e482b65cdee5637a6addf86 git/github.com/nektro/zig-range |
| 12 | blake3-dbbd8d54afa4f2ba93fe11396ca8137c85b4be358ffd106829668f74c9568739 git/github.com/nektro/zig-detect-license | 12 | blake3-dbbd8d54afa4f2ba93fe11396ca8137c85b4be358ffd106829668f74c9568739 git/github.com/nektro/zig-detect-license |
| 13 | blake3-20ceb9e27bdb93540e93006628fb94e0540f3f69a2304a8f73ad2989b8e27226 git/github.com/nektro/zig-licenses-text | 13 | blake3-20ceb9e27bdb93540e93006628fb94e0540f3f69a2304a8f73ad2989b8e27226 git/github.com/nektro/zig-licenses-text |
| ... | @@ -15,4 +15,4 @@ blake3-cf68eaad66254b89c8bc18578f58607aa2e87ae59dd5696c2394eb5a0a31c455 git/gith | ... | @@ -15,4 +15,4 @@ blake3-cf68eaad66254b89c8bc18578f58607aa2e87ae59dd5696c2394eb5a0a31c455 git/gith |
| 15 | blake3-10460da714f5c8436d09c268795597b0b2686ffc1e789c9f50366c2cbb0e1ff3 git/github.com/nektro/zig-fs-check | 15 | blake3-10460da714f5c8436d09c268795597b0b2686ffc1e789c9f50366c2cbb0e1ff3 git/github.com/nektro/zig-fs-check |
| 16 | blake3-e476d1ceb5eb5bf59654c92fc5c0892a8ebd0bdb2ae502a67febe1c218d5e608 git/github.com/nektro/zig-inquirer | 16 | blake3-e476d1ceb5eb5bf59654c92fc5c0892a8ebd0bdb2ae502a67febe1c218d5e608 git/github.com/nektro/zig-inquirer |
| 17 | blake3-11e4547318be39f37bef2883e8fdb3a0d1237031cbbbada1a1ba2f40f1146834 git/github.com/arqv/ini | 17 | blake3-11e4547318be39f37bef2883e8fdb3a0d1237031cbbbada1a1ba2f40f1146834 git/github.com/arqv/ini |
| 18 | blake3-96b07b1c07fe284067d9d5eb7d232f18ce61074fcb9260a4c63e5a2a4bf4e032 git/github.com/marlersoft/zigwin32 | 18 | blake3-94d1797f665a6e40821fb34faa081c4cf564babf945dd67be1dae227020079f9 git/github.com/marlersoft/zigwin32 |