From 928a10e8804b771a32db6cfe8bea90264f789cf5 Mon Sep 17 00:00:00 2001 From: torque Date: Thu, 13 Mar 2025 22:11:30 -0600 Subject: [PATCH] deps: update nats.c to 3.9.3 --- build.zig.zon | 4 ++-- tests/nats.zig | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index 30698a4..ca5fcc3 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -11,8 +11,8 @@ }, .dependencies = .{ .nats_c = .{ - .url = "git+https://github.com/allyourcodebase/nats.c.git?ref=3.9.1+1#6e6c26f0ebb63ca55913f5a60c9c762cb598b117", - .hash = "nats_c-3.9.1-0V8jnIpSAABnRZjGhKu7GzOKPWzb-JB35jspoD_AfLvm", + .url = "git+https://github.com/allyourcodebase/nats.c.git?ref=3.9.3#81a546c524f7c3db16606b85b5d729b393d8667e", + .hash = "nats_c-3.9.3-0V8jnNdSAACkcRB0PdrHECfsTXSiySA6OeAOx1e83iaM", }, }, } diff --git a/tests/nats.zig b/tests/nats.zig index 35c0518..0194525 100644 --- a/tests/nats.zig +++ b/tests/nats.zig @@ -9,8 +9,8 @@ test "version" { const version = nats.getVersion(); const vernum = nats.getVersionNumber(); - try std.testing.expectEqualStrings("3.9.1", version); - try std.testing.expectEqual(@as(u32, 0x03_09_01), vernum); + try std.testing.expectEqualStrings("3.9.3", version); + try std.testing.expectEqual(@as(u32, 0x03_09_03), vernum); try std.testing.expect(nats.checkCompatibility()); }