omnimesh 1.0.0

Zero-allocation mesh networking middleware for autonomous robot fleets, edge-AI swarms, and multi-agent systems
Documentation
pub mod bootstrap;
pub mod delivery;
pub mod layer;
pub mod security;
pub mod storage;
pub mod transport;
pub mod routing;
#[cfg(feature = "serde_json")]
pub mod ros2_bridge;
pub mod stats;
pub mod wcet;
pub mod metrics;
pub mod logging;

pub use bootstrap::{run, Runtime};
pub use layer::RuntimeLayer;
pub use routing::RoutingTable;
pub use stats::RuntimeStats;
pub use wcet::{WcetGuard, WcetBudget};
pub use storage::DtnStore;
pub use logging::{Logger, LogEntry, LogLevel};
#[cfg(feature = "serde_json")]
pub use ros2_bridge::{Ros2Bridge, Ros2BridgeConfig};