From 3b5412b035aca7e04790122a861c6fd299a3e197 Mon Sep 17 00:00:00 2001 From: torque Date: Thu, 5 Dec 2024 22:59:28 -0700 Subject: [PATCH] deps: update nats.c to 3.9.1 This also brings in libressl-portable 4.0.0. --- 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 7c167a6..e9cf7aa 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -9,8 +9,8 @@ }, .dependencies = .{ .nats_c = .{ - .url = "git+https://github.com/allyourcodebase/nats.c.git?ref=3.8.2+1#b0e28ff9cb067b1b420aa89c576b0a2e7ace8c65", - .hash = "1220caaef4a434269c574772a5020c1b56b1441822a235ea5c0a131e4a20fd347c3c", + .url = "git+https://github.com/allyourcodebase/nats.c.git?ref=3.9.1#be5a084d6e235de157e6183533b2575f413afc82", + .hash = "122052af6a8b2a226de6422b9f50140ea97e9fe27995d0aa257b7c773d41b20a414c", }, }, } diff --git a/tests/nats.zig b/tests/nats.zig index 1cb026a..35c0518 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.8.2", version); - try std.testing.expectEqual(@as(u32, 0x03_08_02), vernum); + try std.testing.expectEqualStrings("3.9.1", version); + try std.testing.expectEqual(@as(u32, 0x03_09_01), vernum); try std.testing.expect(nats.checkCompatibility()); }