118 stable releases
3.8.0 | Mar 6, 2023 |
---|---|
3.7.1 | Jan 11, 2023 |
3.7.0 | Sep 25, 2022 |
3.6.2 | Jul 25, 2022 |
1.2.4 | Mar 24, 2020 |
#206 in Command-line interface
450 downloads per month
Used in 3 crates
(2 directly)
1MB
16K
SLoC
libnotcurses-sys
is a low-level Rust wrapper for the
notcurses C library
It's recommended to use the notcurses higher level bindings.
Example
use libnotcurses_sys::*;
fn main() -> NcResult<()> {
let nc = unsafe { Nc::new_cli()? };
let stdplane = unsafe { nc.stdplane() };
stdplane.putstr("\nhello world!\n")?;
nc.render()?;
unsafe { nc.stop()? };
Ok(())
}
Versioning
Current version 3.8.0
is compatible with notcurses 3.0.9
.
Current major version 3
is considered a development version
Dependencies
~0–1.5MB
~31K SLoC