#terminal #dashboard

unmaintained tui

A library to build rich terminal user interfaces or dashboards

37 unstable releases

0.19.0 Aug 14, 2022
0.18.0 Apr 24, 2022
0.17.0 Jan 22, 2022
0.16.0 Aug 1, 2021
0.1.1 Nov 28, 2016

#676 in Command-line interface

Download history 31619/week @ 2023-10-19 32838/week @ 2023-10-26 29738/week @ 2023-11-02 30795/week @ 2023-11-09 28669/week @ 2023-11-16 26746/week @ 2023-11-23 26850/week @ 2023-11-30 28220/week @ 2023-12-07 24183/week @ 2023-12-14 19150/week @ 2023-12-21 16746/week @ 2023-12-28 25278/week @ 2024-01-04 30892/week @ 2024-01-11 30410/week @ 2024-01-18 28412/week @ 2024-01-25 20500/week @ 2024-02-01

114,529 downloads per month
Used in fewer than 356 crates

MIT license

405KB
12K SLoC

tui-rs

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 supports multiple backends:

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.

I'm actively looking for help maintaining this crate. See this issue

Rust version requirements

Since version 0.17.0, tui requires rustc version 1.56.1 or greater.

Documentation

Demo

The demo shown in the gif can be run with all available backends.

# crossterm
cargo run --example demo --release -- --tick-rate 200
# termion
cargo run --example demo --no-default-features --features=termion --release -- --tick-rate 200

where tick-rate is the UI refresh rate in ms.

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

If the user interface contains glyphs that are not displayed correctly by your terminal, you may want to run the demo without those symbols:

cargo run --example demo --release -- --tick-rate 200 --enhanced-graphics false

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 gauge example cargo run --example gauge), and quit by pressing q.

You can run all examples by running cargo make run-examples (require cargo-make that can be installed with cargo install cargo-make).

Third-party widgets

Apps using tui

Alternatives

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

License

MIT

Dependencies

~2–11MB
~91K SLoC