Crates.io | crossterm |
lib.rs | crossterm |
version | 0.28.1 |
source | src |
created_at | 2018-01-18 22:18:11.132912 |
updated_at | 2024-08-01 18:34:59.766417 |
description | A crossplatform terminal library for manipulating terminals. |
homepage | |
repository | https://github.com/crossterm-rs/crossterm |
max_upload_size | |
id | 47345 |
size | 510,818 |
Crossterm is a pure-rust, terminal manipulation library that makes it possible to write cross-platform text-based interfaces (see features). It supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested, see Tested Terminals for more info).
This crate supports all UNIX terminals and Windows terminals down to Windows 7; however, not all of the terminals have been tested. If you have used this library for a terminal other than the above list without issues, then feel free to add it to the above list - I really would appreciate it!
see the examples directory and documentation for more advanced examples.
[dependencies]
crossterm = "0.27"
use std::io::{stdout, Write};
use crossterm::{
execute,
style::{Color, Print, ResetColor, SetBackgroundColor, SetForegroundColor},
ExecutableCommand,
event,
};
fn main() -> std::io::Result<()> {
// using the macro
execute!(
stdout(),
SetForegroundColor(Color::Blue),
SetBackgroundColor(Color::Red),
Print("Styled text here."),
ResetColor
)?;
// or using functions
stdout()
.execute(SetForegroundColor(Color::Blue))?
.execute(SetBackgroundColor(Color::Red))?
.execute(Print("Styled text here."))?
.execute(ResetColor)?;
Ok(())
}
Checkout this list with all possible commands.
[dependencies.crossterm]
version = "0.27"
features = ["event-stream"]
Feature | Description |
---|---|
event-stream |
futures::Stream producing Result<Event> . |
serde |
(De)serializing of events. |
events |
Reading input/system events (enabled by default) |
filedescriptor |
Use raw filedescriptor for all events rather then mio dependency |
To use crossterm as a very thin layer you can disable the events
feature or use filedescriptor
feature.
This can disable mio
/ signal-hook
/ signal-hook-mio
dependencies.
Dependency | Used for | Included |
---|---|---|
bitflags |
KeyModifiers , those are differ based on input. |
always |
parking_lot |
locking RwLock s with a timeout, const mutexes. |
always |
libc |
UNIX terminal_size/raw modes/set_title and several other low level functionality. | optional (events feature), UNIX only |
Mio |
event readiness polling, waking up poller | optional (events feature), UNIX only |
signal-hook |
signal-hook is used to handle terminal resize SIGNAL with Mio. | optional (events feature),UNIX only |
winapi |
Used for low-level windows system calls which ANSI codes can't replace | windows only |
futures-core |
For async stream of events | only with event-stream feature flag |
serde |
serializing and deserializing of events | only with serde feature flag |
We highly appreciate when anyone contributes to this crate. Before you do, please, read the Contributing guidelines.
This project, crossterm
and all its sub-crates: crossterm_screen
, crossterm_cursor
, crossterm_style
,
crossterm_input
, crossterm_terminal
, crossterm_winapi
, crossterm_utils
are licensed under the MIT
License - see the LICENSE file for details.