mbus-serial 0.9.0

Serial RTU and ASCII transport implementations for modbus-rs, including sync, Tokio, and WASM adapters
Documentation
1
2
3
4
5
6
7
8
9
10
mod management;

#[cfg(not(target_arch = "wasm32"))]
pub use management::std_serial::*;

#[cfg(all(feature = "async", not(target_arch = "wasm32")))]
pub use management::async_serial::{TokioAsciiTransport, TokioRtuTransport};

#[cfg(all(feature = "wasm", target_arch = "wasm32"))]
pub use management::wasm_serial::*;