async-modbus 0.7.2

A lightweight asynchronous Modbus protocol implementation for embedded environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]

#[cfg(feature = "embedded-io")]
pub mod client;
mod frame;
pub mod pdu;

pub use frame::*;
pub use pdu::Pdu;
pub use zerocopy;