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
//! IoT Domain CRDTs
//!
//! This module provides CRDTs specifically designed for Internet of Things (IoT)
//! distributed coordination, focusing on device management and sensor networks.

pub mod devices;
pub mod sensors;

// Re-export main types
pub use devices::{ConnectionState, DeviceInfo, DeviceRegistry, DeviceStatus};
pub use sensors::{ReadingQuality, SensorNetwork, SensorReading, SensorType};