unicom_serial/
lib.rs

1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "tokio")]
4mod tokio_impl;
5
6#[cfg(feature = "async")]
7compile_error!("Currently lacks non-tokio runtimes support!");
8
9#[cfg(feature = "tokio")]
10pub use tokio_impl::*;