| author | |
| committer | |
| log | 0a086c6bb2c394b337ee87d7dfa9d3efe26e52bc |
| tree | f7b0b867d02d3686ce99b9f647d3be4e5e8a6a5f |
| parent | e81b89d237a3eb1b80bf73bf395751ebcd0f8a7d |
6 files changed, 6 insertions(+), 6 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.1444+e2a2e6c14 | 18 | - run: ./download_zig.sh 0.9.0-dev.1524+d2f9646d9 |
| 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 |
.github/workflows/nightly.yml+1-1| ... | @@ -28,7 +28,7 @@ jobs: | ... | @@ -28,7 +28,7 @@ jobs: |
| 28 | - name: Setup Zig | 28 | - name: Setup Zig |
| 29 | uses: goto-bus-stop/setup-zig@v1 | 29 | uses: goto-bus-stop/setup-zig@v1 |
| 30 | with: | 30 | with: |
| 31 | version: 0.9.0-dev.1444+e2a2e6c14 | 31 | version: 0.9.0-dev.1524+d2f9646d9 |
| 32 | 32 | ||
| 33 | - run: zig version | 33 | - run: zig version |
| 34 | - run: zig env | 34 | - run: zig env |
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.1343+75cecef63` | 20 | - Zig master `0.9.0-dev.1524+d2f9646d9` |
| 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 |
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.1343+75cecef63`. | 13 | The earliest Zig release this Zigmod was verified to work with is `0.9.0-dev.1524+d2f9646d9`. |
| 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. |
src/util/funcs.zig+1-1| ... | @@ -172,7 +172,7 @@ const alphabet = "0123456789abcdefghijklmnopqrstuvwxyz"; | ... | @@ -172,7 +172,7 @@ const alphabet = "0123456789abcdefghijklmnopqrstuvwxyz"; |
| 172 | pub fn random_string(alloc: *std.mem.Allocator, len: usize) !string { | 172 | pub fn random_string(alloc: *std.mem.Allocator, len: usize) !string { |
| 173 | const now = @intCast(u64, std.time.nanoTimestamp()); | 173 | const now = @intCast(u64, std.time.nanoTimestamp()); |
| 174 | var rand = std.rand.DefaultPrng.init(now); | 174 | var rand = std.rand.DefaultPrng.init(now); |
| 175 | const r = &rand.random; | 175 | const r = &rand.random(); |
| 176 | var buf = try alloc.alloc(u8, len); | 176 | var buf = try alloc.alloc(u8, len); |
| 177 | var i: usize = 0; | 177 | var i: usize = 0; |
| 178 | while (i < len) : (i += 1) { | 178 | while (i < len) : (i += 1) { |
zigmod.lock+1-1| ... | @@ -1,6 +1,6 @@ | ... | @@ -1,6 +1,6 @@ |
| 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-954fd016964d44dfe8648985fd7c06f0067be6b0 | 3 | git https://github.com/nektro/iguanaTLS commit-a48976beb7135b472ce8aa2f276df3b8eb775440 |
| 4 | git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f | 4 | git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f |
| 5 | git https://github.com/ziglibs/known-folders commit-a282c26da51e5d2c01fec5c744e321ae248cf409 | 5 | git https://github.com/ziglibs/known-folders commit-a282c26da51e5d2c01fec5c744e321ae248cf409 |
| 6 | git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e7680 | 6 | git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e7680 |