async_utility/
lib.rs

1// Copyright (c) 2022-2023 Yuki Kishimoto
2// Distributed under the MIT software license
3
4//! Async Utility
5
6pub extern crate futures_util;
7pub extern crate tokio;
8
9#[cfg(not(target_arch = "wasm32"))]
10mod runtime;
11pub mod task;
12pub mod time;