| Crates.io | utile_cli |
| lib.rs | utile_cli |
| version | 0.3.2 |
| created_at | 2020-04-27 21:55:22.052192+00 |
| updated_at | 2020-05-01 17:57:43.906724+00 |
| description | Useful abstractions for pancurses. |
| homepage | |
| repository | https://github.com/meltedot/utile_cli |
| max_upload_size | |
| id | 234794 |
| size | 24,276 |
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.
Visit the pancurses repository
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!");
}