mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
e6d2e04bcf
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.
20 lines
354 B
Rust
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
|
|
);
|