rust terminal interfaces tui
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
timonpost@hotmail.nl 5645d0de03 gitignore 5 years ago
.idea gitignore 5 years ago
assets chore: remove scripts 6 years ago
examples update 0.9.2 5 years ago
src review update 5 years ago
tests Format 5 years ago
.gitignore gitignore 5 years ago
.travis.yml travis: check style on stable only 6 years ago
CHANGELOG.md Release v0.5.1 5 years ago
Cargo.toml review update 5 years ago
LICENSE Add README, LICENSE and update demo 8 years ago
Makefile chore(Makefile): make run-examples compile the examples in release mode 5 years ago
README.md Fix a wrongly linked link 5 years ago
appveyor.yml chore(ci): add appveyor config 5 years ago

README.md

tui-rs

Build Status Build status Crate Status Docs Status

Demo cast under Linux Termite with Inconsolata font 12pt

tui-rs is a Rust library to build rich terminal user interfaces and dashboards. It is heavily inspired by the Javascript library blessed-contrib and the Go library termui.

The library itself supports four different backends to draw to the terminal. You can either choose from:

However, some features may only be available in one of the four.

The library is based on the principle of immediate rendering with intermediate buffers. This means that at each new frame you should build all widgets that are supposed to be part of the UI. While providing a great flexibility for rich and interactive UI, this may introduce overhead for highly dynamic content. So, the implementation try to minimize the number of ansi escapes sequences generated to draw the updated UI. In practice, given the speed of Rust the overhead rather comes from the terminal emulator than the library itself.

Moreover, the library does not provide any input handling nor any event system and you may rely on the previously cited libraries to achieve such features.

Documentation

Demo

The demo shown in the gif can be run with all available backends (exmples/*_demo.rs files). For example to see the termion version one could run:

cargo run --example termion_demo --release -- --tick-rate 200

The UI code is in examples/demo/ui.rs while the application state is in examples/demo/app.rs.

Widgets

The library comes with the following list of widgets:

Click on each item to see the source of the example. Run the examples with with cargo (e.g. to run the demo cargo run --example demo), and quit by pressing q.

You can run all examples by running make run-examples.

Third-party widgets

Alternatives

You might want to checkout Cursive for an alternative solution to build text user interfaces in Rust.

License

MIT