qadapt 1.0.4

The Quick And Dirty Allocation Profiling Tool
Documentation
1
2
3
4
5
6
7
8
9
10
use qadapt::QADAPT;

#[global_allocator]
static Q: QADAPT = QADAPT;

#[cfg(not(debug_assertions))]
#[test]
fn release_only_inactive() {
    assert!(!qadapt::is_active());
}