| author | |
| committer | |
| log | f366d471dd205120531135c82279f1457fd5d11f |
| tree | ad41c579cb87b855f38decb4f65ddde56e9eb738 |
| parent | 6ff9fb3d04a5025507ab4790324024b1dc12d2e4 |
5 files changed, 7 insertions(+), 7 deletions(-)
.circleci/config.yml+1-1| ... | ... | @@ -15,7 +15,7 @@ jobs: |
| 15 | 15 | - run: git submodule update --init --recursive |
| 16 | 16 | |
| 17 | 17 | - run: apt -y install xz-utils jq |
| 18 | - run: ./download_zig.sh 0.8.0-dev.1127+6a5a6386c | |
| 18 | - run: ./download_zig.sh 0.8.0-dev.1158+0aef1faa8 | |
| 19 | 19 | - run: zig version |
| 20 | 20 | - run: zig env |
| 21 | 21 | - run: zig build -Dbootstrap |
README.md+1-1| ... | ... | @@ -18,7 +18,7 @@ A package manager for the Zig programming language. |
| 18 | 18 | |
| 19 | 19 | ## Built With |
| 20 | 20 | - Zig master |
| 21 | - 0.8.0-dev.1127+6a5a6386c | |
| 21 | - `0.8.0-dev.1158+0aef1faa8` | |
| 22 | 22 | |
| 23 | 23 | ### Build from Source |
| 24 | 24 | Initially, |
deps.zig+2-2| ... | ... | @@ -42,7 +42,7 @@ pub const _paths = .{ |
| 42 | 42 | "/v/git/github.com/nektro/zig-ansi/commit-25039ca/", |
| 43 | 43 | "/v/git/github.com/ziglibs/known-folders/commit-f0f4188/", |
| 44 | 44 | "/v/git/github.com/Vexu/zuri/commit-41bcd78/", |
| 45 | "/v/git/github.com/alexnask/iguanaTLS/commit-58f72f6/", | |
| 45 | "/v/git/github.com/alexnask/iguanaTLS/commit-2c21764/", | |
| 46 | 46 | "/v/git/github.com/nektro/zig-licenses/commit-a15ef9b/", |
| 47 | 47 | }; |
| 48 | 48 | |
| ... | ... | @@ -50,7 +50,7 @@ pub const package_data = struct { |
| 50 | 50 | pub const _s84v9o48ucb0xq0cmzq0cn433hgw0iaqztugja16h8bzxu3h = build.Pkg{ .name = "ansi", .path = cache ++ "/v/git/github.com/nektro/zig-ansi/commit-25039ca/src/lib.zig", .dependencies = &[_]build.Pkg{ } }; |
| 51 | 51 | pub const _2ta738wrqbaqzl3iwzoo8nj35k9ynwz5p5iyz80ryrpp4ttf = build.Pkg{ .name = "known-folders", .path = cache ++ "/v/git/github.com/ziglibs/known-folders/commit-f0f4188/known-folders.zig", .dependencies = &[_]build.Pkg{ } }; |
| 52 | 52 | pub const _2b7mq571jmq31ktmpigopu29480iw245heueajgxzxn7ab8o = build.Pkg{ .name = "zuri", .path = cache ++ "/v/git/github.com/Vexu/zuri/commit-41bcd78/src/zuri.zig", .dependencies = &[_]build.Pkg{ } }; |
| 53 | pub const _csbnipaad8n77buaszsnjvlmn6j173fl7pkprsctelswjywe = build.Pkg{ .name = "iguanatls", .path = cache ++ "/v/git/github.com/alexnask/iguanaTLS/commit-58f72f6/src/main.zig", .dependencies = &[_]build.Pkg{ } }; | |
| 53 | pub const _csbnipaad8n77buaszsnjvlmn6j173fl7pkprsctelswjywe = build.Pkg{ .name = "iguanatls", .path = cache ++ "/v/git/github.com/alexnask/iguanaTLS/commit-2c21764/src/main.zig", .dependencies = &[_]build.Pkg{ } }; | |
| 54 | 54 | pub const _0npcrzfdlrvkf44mzjo8bduj9gmqyefo0j3rstt6b0pm2r6r = build.Pkg{ .name = "licenses", .path = cache ++ "/v/git/github.com/nektro/zig-licenses/commit-a15ef9b/src/lib.zig", .dependencies = &[_]build.Pkg{ } }; |
| 55 | 55 | }; |
| 56 | 56 |
docs/README.md+2-2| ... | ... | @@ -8,13 +8,13 @@ You can learn more about Zig here: |
| 8 | 8 | |
| 9 | 9 | 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. The most recent release Zigmod was verified to work with is `0.8.0-dev.1127+6a5a6386c`. | |
| 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. The most recent release Zigmod was verified to work with is `0.8.0-dev.1158+0aef1faa8`. | |
| 12 | 12 | |
| 13 | 13 | ## Download |
| 14 | 14 | You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source. |
| 15 | 15 | |
| 16 | 16 | ### Build Zigmod from source |
| 17 | Assuming you have Zig master `0.8.0-dev.1127+6a5a6386c` installed, | |
| 17 | Assuming you have Zig master installed, | |
| 18 | 18 | ``` |
| 19 | 19 | $ git clone https://github.com/nektro/zigmod --recursive |
| 20 | 20 | $ cd zigmod |
zig.mod+1-1| ... | ... | @@ -39,7 +39,7 @@ dependencies: |
| 39 | 39 | version: commit-41bcd78 |
| 40 | 40 | |
| 41 | 41 | - src: git https://github.com/alexnask/iguanaTLS |
| 42 | version: commit-58f72f6 | |
| 42 | version: commit-2c21764 | |
| 43 | 43 | |
| 44 | 44 | - src: git https://github.com/nektro/zig-licenses |
| 45 | 45 | version: commit-a15ef9b |