witas 0.6.1

An asynchronous window library in Rust for Windows
Documentation

witas

wita at crates.io wita at docs.rs

An asynchronous window library in Rust for Windows

The simple example

#[tokio::main]
async fn main() {
    let (_window, mut rx) = witas::Window::builder()
        .title("witas hello")
        .inner_size(witas::LogicalSize::new(640, 480))
        .await
        .unwrap();
    loop {
        let event = rx.recv().await; 
        println!("{:?}", event);
        if let witas::Event::Quit = event {
            break;
        }
    }
}

Licensed under MIT License

Copylight (c) 2022 LNSEAB