//! Core CRDT traits module
//!
//! This module defines the fundamental traits that all CRDTs must implement,
//! providing the foundation for the entire CRDTosphere library.
// Re-export main traits
pub use BoundedCRDT;
pub use CRDT;
pub use PlatformCRDT;
pub use RealTimeCRDT;
pub use SafetyCRDT;