Cursive is a TUI (Text User Interface) library for rust. It uses ncurses by default, but other backends are available.
It allows you to build rich user interfaces for terminal applications.
It is designed to be safe and easy to use:
toml
[dependencies]
cursive = "0.11"
Or to use the latest git version:
toml
[dependencies]
cursive = { git = "https://github.com/gyscos/Cursive" }
(You will also need ncurses installed.)
```rust,no_run extern crate cursive;
use cursive::Cursive; use cursive::views::{Dialog, TextView};
fn main() { // Creates the cursive root - required for every application. let mut siv = Cursive::default();
// Creates a dialog with a single "Quit" button
siv.add_layer(Dialog::around(TextView::new("Hello Dialog!"))
.title("Cursive")
.button("Quit", |s| s.quit()));
// Starts the event loop.
siv.run();
} ```
Check out the other examples to get these results, and more:
(Colors may depend on your terminal configuration.)
These tutorials may help you get started with cursive:
Here are a few crates implementing new views for you to use:
First off, terminals are messy. A small set of features is standard, but beyond that, almost every terminal has its own implementation.
key_codes
example can be a useful tool to see how the library reacts to various key presses.See also tui-rs - and a small comparison page.