2024-08-06 12:31:13 +00:00
|
|
|
pub mod main {
|
|
|
|
pub mod barchart;
|
|
|
|
pub mod block;
|
2024-08-07 06:05:36 +00:00
|
|
|
pub mod buffer;
|
2024-08-06 12:31:13 +00:00
|
|
|
pub mod line;
|
|
|
|
pub mod list;
|
|
|
|
pub mod paragraph;
|
|
|
|
pub mod rect;
|
|
|
|
pub mod sparkline;
|
2024-10-07 19:32:05 +00:00
|
|
|
pub mod table;
|
2024-08-06 12:31:13 +00:00
|
|
|
}
|
|
|
|
pub use main::*;
|
|
|
|
|
|
|
|
criterion::criterion_main!(
|
|
|
|
barchart::benches,
|
|
|
|
block::benches,
|
2024-08-07 06:05:36 +00:00
|
|
|
buffer::benches,
|
2024-08-06 12:31:13 +00:00
|
|
|
line::benches,
|
|
|
|
list::benches,
|
|
|
|
paragraph::benches,
|
|
|
|
rect::benches,
|
2024-10-07 19:32:05 +00:00
|
|
|
sparkline::benches,
|
|
|
|
table::benches,
|
2024-08-06 12:31:13 +00:00
|
|
|
);
|