crdtosphere 0.1.0

Universal embedded CRDTs for distributed coordination across automotive, robotics, IoT, and industrial applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Memory management module for CRDTosphere
//!
//! This module provides configurable memory management for embedded CRDT implementations.
//! It includes compile-time memory configuration, validation, and static memory pools.

pub mod config;
pub mod macros;
pub mod validation;

// Re-export main types
pub use config::{DefaultConfig, MemoryConfig, NodeId};
pub use macros::define_memory_config;
pub use validation::MemoryValidator;