chore: update zig version

This commit is contained in:
Nurul Huda (Apon) 2026-05-27 11:51:08 +06:00
parent 122b4151d0
commit 336d71f29f
No known key found for this signature in database
GPG key ID: 5D3F1DE2855A2F79
7 changed files with 8 additions and 7 deletions

View file

@ -60,7 +60,7 @@ jobs:
- name: Setup Zig - name: Setup Zig
uses: mlugg/setup-zig@v2 uses: mlugg/setup-zig@v2
with: with:
version: 0.17.0-dev.304+9787df942 version: 0.17.0-dev.387+31f157d80
- name: Setup Rust - name: Setup Rust
uses: dtolnay/rust-toolchain@stable uses: dtolnay/rust-toolchain@stable

View file

@ -22,7 +22,7 @@ jobs:
- name: Setup Zig - name: Setup Zig
uses: mlugg/setup-zig@v2 uses: mlugg/setup-zig@v2
with: with:
version: 0.17.0-dev.304+9787df942 version: 0.17.0-dev.387+31f157d80
- name: Build project - name: Build project
run: zig build run: zig build
@ -55,7 +55,7 @@ jobs:
- name: Setup Zig - name: Setup Zig
uses: mlugg/setup-zig@v2 uses: mlugg/setup-zig@v2
with: with:
version: 0.17.0-dev.304+9787df942 version: 0.17.0-dev.387+31f157d80
- name: Download build artifacts - name: Download build artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4

View file

@ -11,7 +11,7 @@ Temporalz provides Zig bindings to the Rust-based [temporal_rs](https://github.c
#### Prerequisites #### Prerequisites
- Zig 0.17.0-dev.304+9787df942 - Zig 0.17.0-dev.387+31f157d80
- Rust toolchain (only required if [prebuilt staticlibs](#prebuilt) are not available for your platform) - Rust toolchain (only required if [prebuilt staticlibs](#prebuilt) are not available for your platform)
#### Add as a Dependency #### Add as a Dependency

View file

@ -2,7 +2,7 @@
.name = .temporalz, .name = .temporalz,
.version = "0.2.0", .version = "0.2.0",
.fingerprint = 0xd8d79d59acc4faae, .fingerprint = 0xd8d79d59acc4faae,
.minimum_zig_version = "0.17.0-dev.304+9787df942", .minimum_zig_version = "0.17.0-dev.387+31f157d80",
.dependencies = .{ .dependencies = .{
.temporal = .{ .temporal = .{
.path = "pkg/temporal", .path = "pkg/temporal",

View file

@ -2,7 +2,7 @@
.name = .temporalz_example, .name = .temporalz_example,
.version = "0.1.2", .version = "0.1.2",
.fingerprint = 0x686c9dfc777f9593, .fingerprint = 0x686c9dfc777f9593,
.minimum_zig_version = "0.17.0-dev.304+9787df942", .minimum_zig_version = "0.17.0-dev.387+31f157d80",
.dependencies = .{ .dependencies = .{
.temporalz = .{ .temporalz = .{
.path = "../", .path = "../",

View file

@ -2,7 +2,7 @@
.name = .temporal, .name = .temporal,
.version = "0.2.0", .version = "0.2.0",
.fingerprint = 0xd5dcf3f41df6b117, .fingerprint = 0xd5dcf3f41df6b117,
.minimum_zig_version = "0.17.0-dev.304+9787df942", .minimum_zig_version = "0.17.0-dev.387+31f157d80",
.dependencies = .{ .dependencies = .{
.temporal_rs = .{ .temporal_rs = .{
.url = "git+https://github.com/boa-dev/temporal?ref=v0.2.3#c003cc92325e19b26f8ee2f85e4a47d98cbcc781", .url = "git+https://github.com/boa-dev/temporal?ref=v0.2.3#c003cc92325e19b26f8ee2f85e4a47d98cbcc781",

View file

@ -31,6 +31,7 @@ pub fn main(init: std.process.Init) !void {
const env = Env.init(allocator, init.minimal.environ); const env = Env.init(allocator, init.minimal.environ);
defer env.deinit(allocator); defer env.deinit(allocator);
std.testing.environ = env.environ;
var slowest = SlowTracker.init(allocator, io, 15); var slowest = SlowTracker.init(allocator, io, 15);
defer slowest.deinit(allocator); defer slowest.deinit(allocator);