bevy_archive 0.3.0

An experimental ECS world snapshot system built on Bevy, featuring structured archetype storage and manifest-based serialization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod common;
pub use common::*;

#[cfg(feature = "arrow_rs")]
pub mod arrow_column;
#[cfg(feature = "arrow_rs")]
mod world_snapshot;
#[cfg(feature = "arrow_rs")]
pub use world_snapshot::*;

#[cfg(all(test, feature = "arrow_rs"))]
mod test;

// Replacing rmp_snapshot with msgpack_archive as requested
pub mod msgpack_archive;
pub use msgpack_archive::*;