Skip to content

Releases: mintlu8/bevy_serde_lens

Release v0.6.0

24 Apr 21:04
49b2ebe

Choose a tag to compare

New features

  • Added implementation utilities in bevy_serde_lens_core.

  • Added support for serializing adjacent queries.

  • Added support for relations.

  • Reworked the TypeTagged trait.

  • Added support for registration via linkme.

Release v0.2.0

11 Apr 17:06

Choose a tag to compare

New Features

  • Entity Relations
    Added serialization for Entity with EntityPointer. Added the EntitySmartPointer trait that works similar to how serde serializes smart pointers like Box and Rc.

  • Projection for Option, Vec and Map
    ProjectOption, ProjectVec and ProjectMap can be used to serialize containers that contains SerdeProject types or
    types that can be Converted to SerdeProject types.

  • Cow version of TypeTagged
    Added support for custom clone-less serialization using TypeTagged.

Changes

ChildMap no longer requires Eq and will keep duplicate keys.

Breaking Changes

ProjectVec has been reworked.