lawrence-laz / neotest-zig

Test runner for Zig in Neovim using Neotest backend.
MIT License
27 stars 7 forks source link

fixup: Backwards compatability with v0.12 #21

Closed lawrence-laz closed 5 months ago

lawrence-laz commented 5 months ago

Zig v0.13 deprecated stderr mutex lock functions, instead it replaced it with use lockStdErr and unlockStdErr. These functions, however, are not available in v0.12, so we need to check std.debug decls to be compatible with both v0.12 and v0.13.

Resolves #19