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
defmt
which allows for easy conversion for
error types when using tools likeprobe-rs
for logging over debuggers. - Implement
Serializer::collect_str
- Derive
Serialize
forde::Error
andser::Error
- Support for deserializing escaped strings using
from_str_escaped
andfrom_slice_escaped
.
Changed
heapless
bumped 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.
Serializer
andDeserializer
are now pub.- Added pub
Serializer::end()
andDeserializer::end()
.
Changed
- Increase MSRV to 1.56.0 to work around dependency-MSRV issues (see #72)