#bindings #termbox2 #mut

termbox2-rs

termbox2的简单Rust绑定

1个不稳定版本

0.1.0 2022年7月6日

#49 in #mut

MIT许可证

70KB
2K SLoC

C 757 SLoC PHP 482 SLoC // 0.1% comments Shell 261 SLoC // 0.1% comments Rust 245 SLoC // 0.0% comments Ruby 42 SLoC Zig 39 SLoC // 0.0% comments Go 31 SLoC // 0.4% comments Python 25 SLoC // 0.4% comments

Termbox2绑定

非常简单的termbox2的Rust绑定。

一个简单的示例

use termbox2::*;

fn main() {
	let mut ev = Event::default();
	unsafe {
		tb_init();
		tb_clear();
		tb_present();
		tb_poll_event(&mut ev);
		tb_shutdown();
	}
}

无运行时依赖

~0–2MB
~39K SLoC