mbus-async 0.9.0

Native async Modbus client and server stack for Tokio-based applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![warn(missing_docs)]

//! Async facade for the Modbus client and server stacks.
//!
//! This crate re-exports its public API from internal submodules.
//! The full implementation lives in internal module files.

pub mod client;
#[cfg(any(feature = "server-tcp", feature = "server-serial"))]
pub mod server;

pub use client::*;