fdehau/tui-rs
{ "createdAt": "2016-11-08T09:19:25Z", "defaultBranch": "master", "description": "Build terminal user interfaces and dashboards using Rust", "fullName": "fdehau/tui-rs", "homepage": "", "language": "Rust", "name": "tui-rs", "pushedAt": "2023-08-06T07:35:02Z", "stargazersCount": 10879, "topics": [ "dashboard", "rust", "terminal", "tui" ], "updatedAt": "2025-11-25T03:16:06Z", "url": "https://github.com/fdehau/tui-rs"}tui-rs
Section titled “tui-rs”⚠️ August 2023: This crate is no longer maintained. See https://github.com/ratatui-org/ratatui for an actively maintained fork. ⚠️
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
Section titled “Rust version requirements”Since version 0.17.0, tui requires rustc version 1.56.1 or greater.
The demo shown in the gif can be run with all available backends.
# crosstermcargo run --example demo --release -- --tick-rate 200# termioncargo run --example demo --no-default-features --features=termion --release -- --tick-rate 200where 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 falseWidgets
Section titled “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
Section titled “Third-party widgets”- tui-logger
- tui-textarea: simple yet powerful multi-line text editor widget supporting several key shortcuts, undo/redo, text search, etc.
- tui-rs-tree-widgets: widget for tree data structures.
Apps using tui
Section titled “Apps using tui”- spotify-tui
- bandwhich
- kmon
- gpg-tui
- ytop
- zenith
- bottom
- oha
- gitui
- rust-sadari-cli
- desed
- diskonaut
- tickrs
- rusty-krab-manager
- termchat
- taskwarrior-tui
- gping
- Vector
- KDash
- xplr
- minesweep
- Battleship.rs
- termscp
- joshuto
- adsb_deku/radar
- hoard
- tokio-console: a diagnostics and debugging tool for asynchronous Rust programs.
- hwatch: a alternative watch command that records the result of command execution and can display its history and diffs.
- ytui-music: listen to music from youtube inside your terminal.
- mqttui: subscribe or publish to a MQTT Topic quickly from the terminal.
- meteo-tui: french weather via the command line.
- picterm: preview images in your terminal.
- gobang: a cross-platform TUI database management tool.
- oxker: a simple tui to view & control docker containers.
- trippy: a network diagnostic tool.
- cotp: a trustworthy, encrypted, command-line TOTP/HOTP authenticator app with import functionality.
- hg-tui: view hellogithub.com website on the terminal.
Alternatives
Section titled “Alternatives”You might want to checkout Cursive for an alternative solution to build text user interfaces in Rust.
License
Section titled “License”[MIT]!(LICENSE)