Description
Cursive is a ncurses-based TUI (Text User Interface) library for rust. It is based on jeaye's ncurses-rs.
Cursive alternatives and similar packages
Based on the "GUI" category.
Alternatively, view Cursive alternatives based on common mentions on social networks and blogs.
-
slint
Slint is a declarative GUI toolkit to build native user interfaces for Rust, C++, or JavaScript apps. -
SixtyFPS
DISCONTINUED. Slint is a toolkit to efficiently develop fluid graphical user interfaces for any display: embedded devices and desktop applications. We support multiple programming languages, such as Rust, C++ or JavaScript. [Moved to: https://github.com/slint-ui/slint] -
Relm4
DISCONTINUED. An idiomatic GUI library inspired by Elm and based on gtk4-rs [Moved to: https://github.com/Relm4/Relm4] -
Kiss-ui
A simple UI framework for Rust built on top of IUP (http://webserver2.tecgraf.puc-rio.br/iup/)
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of Cursive or a related project?
Popular Comparisons
README
Cursive
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.
Documentation
It is designed to be safe and easy to use:
[dependencies]
cursive = "0.20"
Or to use the latest git version:
[dependencies]
cursive = { git = "https://github.com/gyscos/cursive" }
(You will also need ncurses installed.)
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();
}
[](cursive/examples/dialog.rs)
Check out the other examples to get these results, and more:
(Colors may depend on your terminal configuration.)
Tutorials
These tutorials may help you get started with cursive:
Third-party views
Here are a few crates implementing new views for you to use:
- cursive-aligned-view: A view wrapper for gyscos/cursive views which aligns child views.
- cursive-async-view: A loading-screen wrapper.
- cursive-flexi-logger-view: An alternative debug view using
emabee/flexi_logger
. - cursive-markup: A view that renders HTML or other markup.
- cursive-multiplex: A tmux like multiplexer.
- cursive-spinner-view: A spinner view.
- cursive-tabs: Tabs.
- cursive_calendar_view: A basic calendar view implementation.
- cursive_hexview: A simple hexview.
- cursive_table_view: A basic table view component.
- cursive_tree_view: A tree view implementation.
Showcases
Here are some cool applications using cursive:
- RustyChat: Chat client made using Rust and Cursive.
- checkline: Checkbox line picker from stdin to stdout.
- clock-cli: A clock with stopwatch and countdown timer functionalities.
- fui: Add CLI & form interface to your program.
- git-branchless: Branchless workflow for Git.
- grin-tui: Minimal implementation of the MimbleWimble protocol.
- kakikun: A paint and ASCII art application for the terminal.
- launchk: Manage launchd agents and daemons on macOS.
- mythra: CLI to search for music.
- ncspot: Cross-platform ncurses Spotify client.
- rbmenu-tui: A TUI for bookmark management.
- ripasso: A simple password manager written in Rust.
- rusty-man: Browse rustdoc documentation.
- saci-rs: Simple API Client Interface.
- so: A terminal interface for Stack Overflow.
- sudoku-tui: Play sudoku on the command line.
- wiki-tui: A simple and easy to use Wikipedia Text User Interface
Goals
- Ease of use. Simple apps should be simple. Complex apps should be manageable.
- Linux TTY Compatibility. Colors may suffer, and UTF-8 may be too much, but most features must work properly on a Linux TTY.
- Flexibility. This library should be able to handle simple UI scripts, complex real-time applications, or even games.
- In particular, it tries to have enough features to recreate these kind of tools:
Compatibility
First off, terminals are messy. A small set of features is standard, but beyond that, almost every terminal has its own implementation.
Output
- Colors: the basic 8-colors palette should be broadly supported. User-defined colors is not supported in the raw linux TTY, but should work in most terminals, although it's still kinda experimental.
- UTF-8: Currently Cursive really expects a UTF-8 locale. It may eventually get patched to support window borders on other locales, but it's not a priority. There is initial support for wide characters. RTL support is planned, but still very early.
Input
- The
key_codes
example can be a useful tool to see how the library reacts to various key presses. - Keep in mind that if the terminal has shortcuts registered, they probably won't be transmitted to the app.
- UTF-8 input should work fine in a unicode-enabled terminal emulator, but raw linux TTY may be more capricious.
[Contributing](CONTRIBUTING.md)
Alternatives
See also tui-rs - and a small comparison page.
*Note that all licence references and agreements mentioned in the Cursive README section above
are relevant to that project's source code only.