deps: update nats.c to 3.9.3

This commit is contained in:
2025-03-13 22:11:30 -06:00
parent fbd6e7af0c
commit 928a10e880
2 changed files with 4 additions and 4 deletions

View File

@@ -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());
}