Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2023-09-13 | 575 Bytes | |
Version 0.8.0.tar.gz | 2023-09-13 | 1.5 MB | |
Version 0.8.0.zip | 2023-09-13 | 1.8 MB | |
Totals: 3 Items | 3.3 MB | 0 |
Added
- Add
YYJSON_SUBTYPE_NOESC
subtype to mark strings that do not need to be escaped. - Add
YYJSON_DISABLE_UTF8_VALIDATION
flag to allow disabling UTF-8 validation at compile-time. - Add dynamic allocator API:
yyjson_alc_dyn_new()
andyyjson_alc_dyn_free()
. - Add the missing API
yyjson_mut_obj_add_arr()
andyyjson_mut_obj_add_obj()
: [#140]
Changed
- Improve the write performance of strings with
YYJSON_SUBTYPE_NOESC
.
Fixed
- Fix clang-16 valgrind fail: [#134]
- Fix compile break when both
FAST_FP
andREADER
are disabled