mbus_client_async/lib.rs
1#![warn(missing_docs)]
2
3//! Async Modbus client facade crate.
4//!
5//! This crate re-exports the async client API from `mbus-async::client`.
6//! It exists to provide a role-focused crate name for users that prefer
7//! direct crate dependencies over the umbrella `modbus-rs` package.
8
9pub use mbus_async::client::*;