15 releases

0.2.0 Jan 31, 2026
0.1.1 Aug 10, 2025
0.0.9-alpha.2 Jul 29, 2025
0.0.9-alpha.1 Jun 28, 2025
0.0.3 Sep 23, 2024

#457 in Command-line interface

Apache-2.0

140KB
809 lines

OSUI

osui

Crates.io Version GitHub Org's stars GitHub License

OSUI is a customizable terminal user interface (TUI) library written in Rust.

use osui::prelude::*;

pub fn main() {
    let engine = Console::new();
    engine.run(App {}).expect("Failed to run engine");
}

#[component]
fn App(cx: &Arc<Context>) -> View {
    rsx! {
        "Hello World"
    }
    .view(&cx)
}

Documentation

Features

  • Custom rsx syntax.
  • Define and manage UI components.
  • Handle keyboard input seamlessly.
  • Create complex layouts using nested elements.
  • Customizable element sizes and styles.

Contributing

Contributions are welcome! If you have suggestions or improvements, feel free to submit a pull request or open an issue.

License

This project is licensed under the Apache License 2.0. See the LICENSE file for details.

Dependencies

~3–16MB
~189K SLoC