1
2
3
4
5
6
7
8
9
10
11
// SPDX-FileCopyrightText: 2022 Kent Gibson <warthog618@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0 OR MIT

/// Wrappers around the Tokio reactor.
#[cfg(feature = "async_tokio")]
pub mod tokio;

/// Wrappers around the async-io reactor.
#[cfg(feature = "async_io")]
pub mod async_io;