| //! Interop between `futures` 0.1 and 0.3. |
| //! |
| //! This module is only available when the `compat` feature of this |
| //! library is activated. |
| |
| mod executor; |
| pub use self::executor::{Executor01As03, Executor01CompatExt, Executor01Future}; |
| |
| mod compat01as03; |
| #[cfg(feature = "io-compat")] |
| #[cfg_attr(docsrs, doc(cfg(feature = "io-compat")))] |
| pub use self::compat01as03::{AsyncRead01CompatExt, AsyncWrite01CompatExt}; |
| pub use self::compat01as03::{Compat01As03, Future01CompatExt, Stream01CompatExt}; |
| #[cfg(feature = "sink")] |
| #[cfg_attr(docsrs, doc(cfg(feature = "sink")))] |
| pub use self::compat01as03::{Compat01As03Sink, Sink01CompatExt}; |
| |
| mod compat03as01; |
| pub use self::compat03as01::Compat; |
| #[cfg(feature = "sink")] |
| #[cfg_attr(docsrs, doc(cfg(feature = "sink")))] |
| pub use self::compat03as01::CompatSink; |