| Crates.io | tuxtui-termion |
| lib.rs | tuxtui-termion |
| version | 0.1.0 |
| created_at | 2025-10-17 21:38:54.290804+00 |
| updated_at | 2025-10-17 21:38:54.290804+00 |
| description | Termion backend for tuxtui TUI library |
| homepage | https://github.com/TIVerse/tuxtui |
| repository | https://github.com/TIVerse/tuxtui |
| max_upload_size | |
| id | 1888472 |
| size | 40,539 |
Termion backend for the tuxtui Terminal UI library.
This crate provides a termion backend implementation for tuxtui, enabling TUI applications to run on Unix-like systems with the termion terminal library.
Add this to your Cargo.toml:
[dependencies]
tuxtui = { version = "0.1", features = ["termion"] }
use tuxtui::prelude::*;
fn main() -> std::io::Result<()> {
let mut terminal = tuxtui::init()?;
terminal.draw(|frame| {
// Your UI code here
})?;
tuxtui::restore()
}
For detailed documentation, see docs.rs/tuxtui-termion.
MIT - See LICENSE for details.