falcotcp/lib.rs
1#[cfg(feature = "thread")]
2mod thread_impl;
3#[cfg(feature = "tokio-runtime")]
4mod tokio_impl;
5#[cfg(feature = "async-std-runtime")]
6mod asyncstd_impl;
7
8#[cfg(feature = "thread")]
9pub use thread_impl::*;
10#[cfg(feature = "tokio-runtime")]
11pub use tokio_impl::*;
12#[cfg(feature = "async-std-runtime")]
13pub use asyncstd_impl::*;