8 releases

0.3.2 May 1, 2020
0.3.1 May 1, 2020
0.2.1 Apr 28, 2020
0.1.2 Apr 27, 2020

#3 in #pancurses

Download history 2/week @ 2024-02-25 103/week @ 2024-03-31

103 downloads per month

MIT license

25KB
494 lines

utile_cli

Useful abstractions for Rust's pancurses. The aim is to ease pancurses development by adding a series of useful simple and documented functions and to allow for simpler terminal-based applications.

Documentation

Requirements

Visit the pancurses repository

Usage

Visit the documentation

Cargo.toml

[dependencies]
utile_cli = "0.3.2"

main.rs

extern crate utile_cli;

use utile_cli::cli::{Terminal};

fn main() {
  let term = Terminal::new();
  term.outln("Hello world!");
}

Dependencies

~0.2–0.8MB
~15K SLoC