hotpath 0.9.0

Simple Rust profiler with memory and async data-flow insights - quickly find and debug performance bottlenecks.
Documentation
1
2
3
4
5
6
#[inline]
pub(crate) fn is_alloc_self_enabled() -> bool {
    std::env::var("HOTPATH_ALLOC_SELF")
        .map(|v| v.eq_ignore_ascii_case("true") || v == "1")
        .unwrap_or(false)
}