3 releases
Uses new Rust 2024
0.1.2 | Mar 13, 2025 |
---|---|
0.1.1 | Mar 13, 2025 |
0.1.0 | Mar 13, 2025 |
#13 in #drop
349 downloads per month
8KB
67 lines
wait-counter
let counter = WaitCounter::new();
let cloned = counter.clone();
tokio::spawn(async move {
// After simulating time-consuming operations, drop the cloned instance
tokio::time::sleep(Duration::from_millis(1000)).await;
drop(cloned);
});
counter.wait().await;
println!("Counter reached 1");
Dependencies
~2.2–8.5MB
~49K SLoC