| Crates.io | tuxtui-termwiz |
| lib.rs | tuxtui-termwiz |
| version | 0.1.0 |
| created_at | 2025-10-17 21:38:55.320221+00 |
| updated_at | 2025-10-17 21:38:55.320221+00 |
| description | Termwiz backend for tuxtui TUI library |
| homepage | https://github.com/TIVerse/tuxtui |
| repository | https://github.com/TIVerse/tuxtui |
| max_upload_size | |
| id | 1888473 |
| size | 49,701 |
Termwiz backend for the tuxtui Terminal UI library.
This crate provides a termwiz backend implementation for tuxtui, enabling TUI applications to run with the termwiz terminal library.
Add this to your Cargo.toml:
[dependencies]
tuxtui = { version = "0.1", features = ["termwiz"] }
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-termwiz.
MIT - See LICENSE for details.