mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
22 lines
395 B
Rust
22 lines
395 B
Rust
pub mod main {
|
|
pub mod barchart;
|
|
pub mod block;
|
|
pub mod buffer;
|
|
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,
|
|
buffer::benches,
|
|
line::benches,
|
|
list::benches,
|
|
paragraph::benches,
|
|
rect::benches,
|
|
sparkline::benches
|
|
);
|