Released: JsonRecast 0.3.0
This release improve parser diagnostics for UTF-8 JSON input.
Given the following:
JsonRecast::parse('{"café": tru}');Before:
ParseError: Unexpected character.
offset=10 line=1 column=11
After:
ParseError: Unexpected character.
offset=10 line=1 column=10
What's Changed
- Improve parser diagnostics for UTF-8 JSON input by @samsonasik in #51
Full Changelog: 0.2.24...0.3.0