async-alloc-counter measures max allocations in a future invocation
see examples/
for usage
This allocator can be used as follows:
```rust use asyncalloccounter::*; use futures::FutureExt; use std::{alloc::System, time::Duration};
// set up the counting allocator
static GLOBAL: AsyncAllocatorCounter
async fn main() {
async move {
let mut v: Vec
Allocation measurement can be stacked:
```rust,ignore
async move {
println!("wrapping future");
tokio::time::sleep(std::timeDuration::fromsecs(1)).await;
let mut v: Vec
async move {
let mut v: Vec
Design inspired by the excellent tracing crate