summaryrefslogtreecommitdiffstats
path: root/vendor/prodash/src/render/line/mod.rs
blob: 37a49e242847fa8248a2b2a040c64c879e66b5a4 (plain)
1
2
3
4
5
6
7
8
9
10
#[cfg(all(
    feature = "render-line",
    not(any(feature = "render-line-crossterm", feature = "render-line-termion"))
))]
compile_error!("Please choose either one of these features: 'render-line-crossterm' or 'render-line-termion'");

mod draw;
mod engine;

pub use engine::{render, JoinHandle, Options, StreamKind};