iai_callgrind_runner/
lib.rs

1//! The iai-callgrind-runner library
2
3#![cfg_attr(docsrs, feature(doc_auto_cfg))]
4#![doc(test(attr(warn(unused))))]
5#![doc(test(attr(allow(unused_extern_crates))))]
6
7#[cfg(feature = "api")]
8pub mod api;
9#[cfg(feature = "runner")]
10pub mod error;
11#[cfg(feature = "runner")]
12pub mod runner;
13#[cfg(feature = "runner")]
14pub mod serde;
15#[cfg(feature = "runner")]
16pub mod util;