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
//! Automotive Domain CRDTs
//!
//! This module provides CRDTs specifically designed for automotive applications,
//! with ISO 26262 safety compliance and ECU coordination patterns.

pub mod safety;
pub mod sensors;

// Re-export main types
pub use safety::{ASILLevel, SafetyCRDT, SafetyLevel};
pub use sensors::{ReliabilityLevel, SensorFusion, SensorReading};