deps: use allyourcodebase build wrappers instead of vendored deps

This updates the nats.c library version to 3.8.2 and the libressl
version to 3.9.2. It's more build system than ever.
This commit is contained in:
2024-09-15 21:05:53 -07:00
parent 74bbe30d0a
commit 5c340bef56
659 changed files with 35 additions and 173615 deletions

View File

@@ -9,8 +9,8 @@ test "version" {
const version = nats.getVersion();
const vernum = nats.getVersionNumber();
try std.testing.expectEqualStrings("3.7.0", version);
try std.testing.expectEqual(@as(u32, 0x03_07_00), vernum);
try std.testing.expectEqualStrings("3.8.2", version);
try std.testing.expectEqual(@as(u32, 0x03_08_02), vernum);
try std.testing.expect(nats.checkCompatibility());
}