dankamongmen / notcurses-rs

high-level rust wrappers for notcurses, built around libnotcurses-sys
Other
50 stars 3 forks source link

Crate API MSRV: 1.65.0

A rusty wrapper over notcurses, the most blingful TUI library.

Example

use notcurses::*;

fn main() -> Result<()> {
    let nc = Notcurses::new_cli()?;
    let mut cli = nc.cli_plane()?;
    cli.putstrln("\nhello world!")?;
    cli.render()?;
    Ok(())
}

Status of the library

The latest released version is compatible with notcurses 3.0.11. The unreleased version is compatible with notcurses unreleased master branch.

Current major version 3 is considered a development version.

Main differences with libnotcurses-sys: