In src/main.zig on lines 479 and 490, the functions parseJson5 and parseJson5File attempt to call parseValue with a Buffer. However, parseValue expects a Buffer pointer.
To resolve this, I suggest changing the buffer variable to a var instead of a const and passing it by pointer to parseValue. This would align with the approach used in other parse functions, such as parse and parseFile.
Thank you for maintaining this Repository, please let me know if I can clarify anything!