[go: up one dir, main page]

crossterm_utils 0.3.1

Common logic used by the crossterm crates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![deny(unused_imports)]

pub use self::command::{Command, ExecutableCommand, Output, QueueableCommand};
pub use self::error::{ErrorKind, Result};
#[cfg(windows)]
pub use self::functions::supports_ansi;

mod command;
pub mod error;
mod functions;
pub mod macros;
pub mod sys;