Skip to main content

mbus_async/
lib.rs

1#![warn(missing_docs)]
2
3//! Async facade for the Modbus client and server stacks.
4//!
5//! This crate re-exports its public API from internal submodules.
6//! The full implementation lives in internal module files.
7
8pub mod client;
9#[cfg(any(feature = "server-tcp", feature = "server-serial"))]
10pub mod server;
11
12pub use client::*;