1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
pub mod error;

#[cfg(all(test, feature = "async"))]
#[macro_use]
extern crate assert_matches;

#[cfg(not(feature = "async"))]
pub mod synchronous;

#[cfg(feature = "async")]
pub mod asynchronous;