bevy_save 2.0.1+4

A framework for saving and loading application state in Bevy.
Documentation
//! Reflection-based snapshots

mod clone;
pub mod migration;
pub mod pipeline;
pub mod prefab;
pub mod remote;
pub mod serde;
pub mod snapshot;

#[cfg(feature = "checkpoints")]
pub mod checkpoint;

#[doc(inline)]
pub use self::{
    clone::clone_reflect_value,
    migration::{
        Migrate,
        Migrator,
        ReflectMigrate,
        SnapshotVersion,
    },
    pipeline::Pipeline,
    prefab::{
        CommandsPrefabExt,
        Prefab,
        WithPrefab,
    },
    remote::{
        DynamicEntity,
        DynamicValue,
        EntityMap,
        ReflectMap,
    },
    serde::{
        SnapshotDeserializer,
        SnapshotDeserializerArc,
        SnapshotSerializer,
        SnapshotSerializerArc,
    },
    snapshot::{
        Applier,
        ApplierRef,
        BoxedHook,
        Builder,
        BuilderRef,
        Hook,
        Snapshot,
    },
};