async-lazy
An async
version of once_cell::sync::Lazy
, std::sync::OnceLock
or lazy_static
. Uses tokio
's sychronization primitives.
parking_lot
: Enables the corresponding feature in tokio
, and ssallows constructing Lazy
s in const
contexts.nightly
: Uses nightly Rust features to implement IntoFuture
for references to Lazy
s, obviating the need to call force()
.```rust use std::time::Duration; use async_lazy::Lazy;
async fn somecomputation() -> u32 { tokio::time::sleep(Duration::fromsecs(1)).await; 1 + 1 }
static LAZY : Lazy
async fn main() { let result = tokio::spawn(async { *LAZY.force().await }).await.unwrap();
assert_eq!(result, 2);
} ```