1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

#[cfg(feature = "tokio")]
mod tokio_impl;

#[cfg(feature = "async")]
compile_error!("Currently lacks non-tokio runtimes support!");

#[cfg(feature = "tokio")]
pub use tokio_impl::*;