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
14
//! Error handling module for CRDTosphere
//!
//! This module provides comprehensive error types for multi-domain embedded CRDT operations.

pub mod platform;
pub mod realtime;
pub mod safety;
pub mod types;

// Re-export main types
pub use platform::PlatformError;
pub use realtime::RealTimeError;
pub use safety::SafetyError;
pub use types::{CRDTError, CRDTResult};