blob: 6d9e2ce856d0c40b95afd98cee84f2f177d50a28 (
plain)
1
2
3
4
5
6
7
8
9
|
//! Data structures modified with guaranteed deterministic behavior after deserialization.
pub use self::arena::{Arena, Index};
pub use self::coarena::Coarena;
pub mod arena;
mod coarena;
pub(crate) mod graph;
pub mod pubsub;
|