libnotcurses-sys
is a low-level Rust wrapper for the
notcurses C library
```rust use libnotcurses_sys::*;
fn main() -> NcResult<()> { let nc = unsafe { Nc::new_cli()? }; nc.stdplane().putstr("hello world")?; nc.render()?; unsafe { nc.stop()? }; Ok(()) } ```
Current version 3.2.0
is compatible with notcurses 3.0.5
.
Current major version 3
is considered a development version, same as if it
were semver major version 0
.