File: lib.rs

package info (click to toggle)
rust-crosstermion 0.14.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: makefile: 4
file content (21 lines) | stat: -rw-r--r-- 480 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/// Features related to terminal user input
#[cfg(feature = "crossterm")]
pub mod input;
/// Features related to the terminal settings and terminal user interfaces.
#[cfg(feature = "crossterm")]
pub mod terminal;

#[cfg(feature = "crossterm")]
pub mod cursor;

pub mod color;

// Reexports
#[cfg(feature = "nu-ansi-term")]
pub use nu_ansi_term;
#[cfg(feature = "crossterm")]
pub use crossterm;
#[cfg(feature = "tui")]
pub use tui;
#[cfg(feature = "tui-react")]
pub use tui_react;