8 releases

0.2.6 Dec 24, 2021
0.2.5 Dec 23, 2021
0.2.1 Oct 22, 2020
0.1.0 Jul 16, 2020

#57 in Concurrency

Download history 28003/week @ 2023-11-20 34455/week @ 2023-11-27 38359/week @ 2023-12-04 33171/week @ 2023-12-11 27634/week @ 2023-12-18 13399/week @ 2023-12-25 28549/week @ 2024-01-01 39141/week @ 2024-01-08 38949/week @ 2024-01-15 40210/week @ 2024-01-22 39552/week @ 2024-01-29 37857/week @ 2024-02-05 39504/week @ 2024-02-12 34047/week @ 2024-02-19 42660/week @ 2024-02-26 42519/week @ 2024-03-04

160,697 downloads per month
Used in 16 crates (15 directly)

MIT/Apache

10KB
176 lines

async_once

async once tool for lazy_static

Examples

   use lazy_static::lazy_static;
   use tokio::runtime::Builder;
   use async_once::AsyncOnce;

   lazy_static!{
       static ref FOO : AsyncOnce<u32> = AsyncOnce::new(async{
           1
       });
   }
   let rt = Builder::new_current_thread().build().unwrap();
   rt.block_on(async {
       assert_eq!(FOO.get().await , &1)
   })

run tests

   cargo test
   wasm-pack test --headless --chrome --firefox

License: MIT OR Apache-2.0


lib.rs:

async once tool for lazy_static

Examples

   use lazy_static::lazy_static;
   use tokio::runtime::Builder;
   use async_once::AsyncOnce;

   lazy_static!{
       static ref FOO : AsyncOnce<u32> = AsyncOnce::new(async{
           1
       });
   }
   let rt = Builder::new_current_thread().build().unwrap();
   rt.block_on(async {
       assert_eq!(FOO.get().await , &1)
   })

run tests

   cargo test
   wasm-pack test --headless --chrome --firefox

No runtime deps