122个稳定版本
3.10.1 | 2024年2月22日 |
---|---|
3.10.0 | 2023年9月8日 |
3.9.1 | 2023年4月13日 |
3.8.0 | 2023年3月6日 |
1.2.4 | 2020年3月24日 |
#207 in 命令行界面
41每月下载量
在 5 个crates中(直接使用2个)中使用
1MB
18K SLoC
libnotcurses-sys
是 notcurses C库 的底层Rust封装
建议使用 notcurses高级绑定。
示例
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(())
}
版本控制
当前版本与 notcurses 3.0.9
兼容。
当前主版本 3
被视为开发版本.
依赖项
~0–2.3MB
~37K SLoC