ratatui-reactive 0.2.0

A minimalistic framework for building TUI applications using fine-grained reactivity.
Documentation
1
2
3
4
5
6
7
#[cfg(not(any(feature = "tokio", feature = "async-io")))]
compile_error!("'tokio' or 'async-io' feature has to be enabled in order to use one backend");

#[cfg(feature = "crossterm")]
mod crossterm;
#[cfg(feature = "crossterm")]
pub use crossterm::*;