[go: up one dir, main page]

crossterm 0.5.1

An crossplatform terminal library for manipulating terminals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module contains some code that can be used for all module in this library.

#[macro_use]
pub mod macros;
pub mod commands;
pub mod functions;
pub mod screen;
pub mod traits;

mod crossterm;

pub use self::crossterm::Crossterm;
use TerminalOutput;