fdehau/tui-rs


Build terminal user interfaces and dashboards using Rust

License: MIT

Language: Rust

Keywords: dashboard, rust, terminal, tui


tui-rs

⚠️ August 2023: This crate is no longer maintained. See https://github.com/ratatui-org/ratatui for an actively maintained fork. ⚠️

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.

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

Project Statistics

Sourcerank 11
Repository Size 3.69 MB
Stars 10,836
Forks 485
Watchers 76
Open issues 0
Dependencies 34
Contributors 94
Tags 36
Created
Last updated
Last pushed

Top Contributors See all

Florian Dehau karolinepauls Timon defiori Antoine Büsch David Flemström stevensonmt Extrawurst Caleb Bassi Jens Krause Brooks Rady Joseph Knight scauligi Robin Nehls Sebastian Woetzel Sven-Hendrik Haase Vadim Chekan Alexandru Scvortov Aram Drevekenin Tom Forbes

Packages Referencing this Repo

tui-temp-fork
A fork of tui with personal changes. You probably will want to use the actual version (see repo l...
Latest release 0.6.7 - Updated - 10.8K stars
rumatui-tui
A library to build rich terminal user interfaces or dashboards
Latest release 0.8.2 - Updated - 10.8K stars
tui
A library to build rich terminal user interfaces or dashboards
Latest release 0.19.0 - Updated - 10.8K stars

Recent Tags See all

v0.19.0 August 14, 2022
v0.18.0 April 24, 2022
v0.17.0 January 22, 2022
v0.16.0 August 01, 2021
v0.15.0 May 02, 2021
v0.14.0 January 01, 2021
v0.13.0 November 14, 2020
v0.12.0 September 27, 2020
v0.11.0 September 20, 2020
v0.10.0 July 18, 2020
v0.9.5 May 21, 2020
v0.9.4 May 12, 2020
v0.9.3 May 10, 2020
v0.9.2 May 10, 2020
v0.9.1 April 16, 2020

Interesting Forks See all

extrawurst/tui-rs
Build terminal user interfaces and dashboards using Rust
Rust - MIT - Last pushed - 2 stars
DarrenBaldwin07/tui-rs
Build terminal user interfaces and dashboards using Rust
MIT - Updated - 1 stars
amirmtaati/tui-rs
Build terminal user interfaces and dashboards using Rust
MIT - Updated - 1 stars
orhun/tui-rs
Build terminal user interfaces and dashboards using Rust
Rust - MIT - Published - 1 stars

Something wrong with this page? Make a suggestion

Last synced: 2024-08-01 11:01:26 UTC

Login to resync this repository