No description
Find a file
2023-03-19 01:30:47 +01:00
.github feat(cd): add continuous deployment workflow (#93) 2023-03-17 21:19:01 +01:00
assets chore: remove scripts 2018-09-09 08:53:37 +02:00
examples chore(cargo): update project metadata (#94) 2023-03-17 17:03:49 +01:00
src chore(cargo): update project metadata (#94) 2023-03-17 17:03:49 +01:00
tests chore(cargo): update project metadata (#94) 2023-03-17 17:03:49 +01:00
.gitignore gitignore 2019-05-17 14:25:55 +02:00
APPS.md docs(apps): move 'apps using ratatui' to dedicated file (#98) (#99) 2023-03-19 01:30:47 +01:00
Cargo.toml chore(cargo): update project metadata (#94) 2023-03-17 17:03:49 +01:00
CHANGELOG.md docs: fix typos (#90) 2023-03-16 18:56:50 +05:30
committed.toml chore: Integrate committed for checking conventional commits (#77) 2023-02-25 14:36:49 +01:00
CONTRIBUTING.md docs: fix typos (#90) 2023-03-16 18:56:50 +05:30
LICENSE Add README, LICENSE and update demo 2016-11-07 01:07:53 +01:00
Makefile.toml chore(ci): re-enable clippy on CI (#59) 2023-02-16 18:51:54 +05:30
README.md docs(apps): move 'apps using ratatui' to dedicated file (#98) (#99) 2023-03-19 01:30:47 +01:00

tui-rs

Build Status Crate Status Docs Status

Demo cast under Linux Termite with Inconsolata font 12pt

What is this fork?

This fork was created to continue maintenance on the original TUI project. The original maintainer had created an issue explaining how he couldn't find time to continue development, which led to us creating this fork. From here, we hope to continue developing the TUI crate.

In order to organize ourselves, we have created a temporary discord server. We have not yet determined with the community what will be our definitive communication medium.

Please make sure you read the updated contributing guidelines, especially if you are interested in working on a PR or issue opened in the previous repository.

Introduction

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.

Rust version requirements

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

Documentation

The documentation can be found on docs.rs.

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

Built in

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 libraries, bootstrapping templates and widgets

  • ansi-to-tui — Convert ansi colored text to tui::text::Text
  • color-to-tui — Parse hex colors to tui::style::Color
  • rust-tui-template — A template for bootstrapping a Rust TUI application with Tui-rs & crossterm
  • simple-tui-rs — A simple example tui-rs app
  • tui-builder — Batteries-included MVC framework for Tui-rs + Crossterm apps
  • tui-clap — Use clap-rs together with Tui-rs
  • tui-log — Example of how to use logging with Tui-rs
  • tui-logger — Logger and Widget for Tui-rs
  • tui-realm — Tui-rs framework to build stateful applications with a React/Elm inspired approach
  • tui-realm-treeview — Treeview component for Tui-realm
  • tui tree widget — Tree Widget for Tui-rs
  • tui-windows — Tui-rs abstraction to handle multiple windows and their rendering
  • 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.
  • tui-input: TUI input library supporting multiple backends and tui-rs.

Apps

Check out the list of close to 40 apps using ratatui!

Alternatives

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

License

MIT