Releases: rust-embedded-community/serde-json-core
Releases · rust-embedded-community/serde-json-core
serde-json-core v0.6.0
Breaking
- MSRV is now 1.65.0.
Added
- Support for optional package defmtwhich allows for easy conversion for
 error types when using tools likeprobe-rsfor logging over debuggers.
- Implement Serializer::collect_str
- Derive Serializeforde::Errorandser::Error
- Support for deserializing escaped strings using from_str_escapedandfrom_slice_escaped.
Changed
- heaplessbumped to v0.8.
New Contributors
- @vhdirk made their first contribution in #77
- @elrafoon made their first contribution in #81
- @dimpolo made their first contribution in #84
- @sammhicks made their first contribution in #83
- @Georges760 made their first contribution in #90
Full Changelog: v0.5.1...v0.6.0
serde-json-core v0.5.1
Added
- Support for serializing tuple structs. These are serialized as JSON arrays, which matches serde_json behaviour.
- Serializerand- Deserializerare now pub.
- Added pub Serializer::end()andDeserializer::end().
Changed
- Increase MSRV to 1.56.0 to work around dependency-MSRV issues (see #72)