ratatui/benches/main.rs
Josh McKinney e6d2e04bcf
perf: move benchmarks into a single benchmark harness (#1302)
Consolidates the benchmarks into a single executable rather than having
to create a new cargo.toml setting per and makes it easier to rearrange
these when adding new benchmarks.
2024-08-06 05:31:13 -07:00

20 lines
354 B
Rust

pub mod main {
pub mod barchart;
pub mod block;
pub mod line;
pub mod list;
pub mod paragraph;
pub mod rect;
pub mod sparkline;
}
pub use main::*;
criterion::criterion_main!(
barchart::benches,
block::benches,
line::benches,
list::benches,
paragraph::benches,
rect::benches,
sparkline::benches
);