deps: update nats.c to 3.9.3

This commit is contained in:
torque 2025-03-13 22:11:30 -06:00
parent fbd6e7af0c
commit 928a10e880
Signed by: torque
SSH Key Fingerprint: SHA256:nCrXefBNo6EbjNSQhv0nXmEg/VuNq3sMF5b8zETw3Tk
2 changed files with 4 additions and 4 deletions

View File

@ -11,8 +11,8 @@
}, },
.dependencies = .{ .dependencies = .{
.nats_c = .{ .nats_c = .{
.url = "git+https://github.com/allyourcodebase/nats.c.git?ref=3.9.1+1#6e6c26f0ebb63ca55913f5a60c9c762cb598b117", .url = "git+https://github.com/allyourcodebase/nats.c.git?ref=3.9.3#81a546c524f7c3db16606b85b5d729b393d8667e",
.hash = "nats_c-3.9.1-0V8jnIpSAABnRZjGhKu7GzOKPWzb-JB35jspoD_AfLvm", .hash = "nats_c-3.9.3-0V8jnNdSAACkcRB0PdrHECfsTXSiySA6OeAOx1e83iaM",
}, },
}, },
} }

View File

@ -9,8 +9,8 @@ test "version" {
const version = nats.getVersion(); const version = nats.getVersion();
const vernum = nats.getVersionNumber(); const vernum = nats.getVersionNumber();
try std.testing.expectEqualStrings("3.9.1", version); try std.testing.expectEqualStrings("3.9.3", version);
try std.testing.expectEqual(@as(u32, 0x03_09_01), vernum); try std.testing.expectEqual(@as(u32, 0x03_09_03), vernum);
try std.testing.expect(nats.checkCompatibility()); try std.testing.expect(nats.checkCompatibility());
} }