belt/lib.rs
1//! Library root for BELT.
2//!
3//! Exposes core benchmarking and configuration APIs.
4
5pub mod analyze;
6pub mod benchmark;
7pub mod core;
8pub mod sanitize;
9
10/// Re-export commonly used types for convenience.
11pub use core::config::{BenchmarkConfig, GlobalConfig};
12pub use core::error::{BenchmarkError, BenchmarkErrorKind, Result};