deps: update nats.c to 3.9.1

This also brings in libressl-portable 4.0.0.
This commit is contained in:
2024-12-05 22:59:28 -07:00
parent ccf0f504a1
commit 3b5412b035
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.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());
}