piano-runtime 0.8.2

Zero-dependency timing and allocation tracking runtime for piano profiler
Documentation
#![allow(unsafe_code)]
#![allow(renamed_and_removed_lints)]
#![allow(clippy::missing_const_for_thread_local)]

mod alloc;
mod collector;
mod cpu_clock;
mod tsc;

pub use alloc::PianoAllocator;
#[cfg(test)]
pub use collector::clear_runs_dir;
#[cfg(any(test, feature = "_test_internals"))]
pub use collector::collect_invocations;
pub use collector::{
    adopt, collect, collect_all, collect_frames, enter, flush, fork, init, register, reset,
    set_runs_dir, shutdown, shutdown_to, AdoptGuard, FrameFnSummary, FunctionRecord, Guard,
    InvocationRecord, SpanContext,
};