Crates.io | osui |
lib.rs | osui |
version | 0.0.3 |
source | src |
created_at | 2024-09-17 18:51:56.381376 |
updated_at | 2024-09-23 05:54:49.208564 |
description | A TUI library |
homepage | |
repository | https://github.com/orus-dev/osui-rs |
max_upload_size | |
id | 1377854 |
size | 27,759 |
osui
is a Text User Interface (TUI) library written in Rust.
OSUI is still in early development. Which means that the way you interact with OSUI will change. Currently we are writing OSUI in Go and we will make a API that can be used by many popular languages like rust
Here is the OSUI Go version: https://github.com/orus-dev/osui
To use osui
in your Rust project, add the following to your Cargo.toml
:
[dependencies]
osui = "^0.0.2"
use osui::{self, render_frame, ui};
fn main() {
let txt = ui::text("Hello World!");
render_frame!(txt);
}