aboutsummaryrefslogtreecommitdiff
path: root/src/data/mod.rs
blob: f20e4336ffaaa684ca3258deb94f84e03da965d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
//! Data structures modified with guaranteed deterministic behavior after deserialization.

pub use self::arena::{Arena, Index};
pub use self::coarena::Coarena;
pub use self::component_set::{BundleSet, ComponentSet, ComponentSetMut, ComponentSetOption};

pub mod arena;
mod coarena;
mod component_set;
pub(crate) mod graph;
pub mod pubsub;