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

#[cfg(not(any(feature = "async", feature = "tokio")))]
compile_error!("Either feature should be selected: async, tokio");

#[cfg(all(feature = "async", feature = "tokio"))]
compile_error!("Either feature should be selected: async, tokio. Not both together.");

#[cfg(any(feature = "async", feature = "tokio"))]
mod real;

#[cfg(any(feature = "async", feature = "tokio"))]
pub use real::*;