| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-08-18 | 752 Bytes | |
| Version 0.12.0 source code.tar.gz | 2025-08-18 | 1.6 MB | |
| Version 0.12.0 source code.zip | 2025-08-18 | 1.9 MB | |
| Totals: 3 Items | 3.5 MB | 0 | |
Added
- Add
yyjson_write_number()andyyjson_mut_write_number()to write a number value to a string buffer. - Add
YYJSON_READ_ALLOW_EXT_NUMBERto support extended number formats, such as0x7B,+.123. - Add
YYJSON_READ_ALLOW_EXT_ESCAPEto support extended escape, such as\a,\0,\x7B. - Add
YYJSON_READ_ALLOW_EXT_WHITESPACEto support extended whitespace, such as\v,\u2028. - Add
YYJSON_READ_ALLOW_SINGLE_QUOTED_STRto support single-quoted strings, such as'ab'. - Add
YYJSON_READ_ALLOW_UNQUOTED_KEYto allow unquoted keys, such as{a:1,b:2}. - Add
YYJSON_READ_JSON5to enable full JSON5 support.
Changed
- Removed support for non-standard JSON in the incremental reader
yyjson_incr_read().