wireband-edge 0.4.1

Lightweight Wire.Band client — semantic data middleware for any domain (IoT, AI/ML, DeFi, legal, geospatial, supply chain, and more)
Documentation
//! Fleet management agent features: device twin, OTA, watchdog.
//!
//! Enabled with `--features agent`. No extra heavy dependencies —
//! just `sha2` for OTA hash verification.
//!
//! # Feature overview
//!
//! | Module | Symbol | Purpose |
//! |--------|--------|---------|
//! | [`twin`] | `EDGE_TWIN_SYNC`, `EDGE_TWIN_DELTA` | Device twin / digital twin sync |
//! | [`ota`]  | `EDGE_OTA_*` | OTA firmware update pipeline |
//! | [`watchdog`] | `EDGE_WDT_KICK` | Hardware + software watchdog |

pub mod ota;
pub mod twin;
pub mod watchdog;

pub use ota::{OtaManager, OtaUpdate};
pub use twin::DeviceTwin;
pub use watchdog::Watchdog;