winit 0.31.0-beta.3

Cross-platform window creation library.
Documentation
#[allow(dead_code)]
fn needs_sync<T: Sync + ?Sized>() {}

#[test]
fn event_loop_proxy_send() {
    needs_sync::<winit::event_loop::EventLoopProxy>();
}

#[test]
fn window_sync() {
    needs_sync::<dyn winit::window::Window>();
}

#[test]
fn window_builder_sync() {
    needs_sync::<winit::window::WindowAttributes>();
}

#[test]
fn custom_cursor_sync() {
    needs_sync::<winit::cursor::CustomCursorSource>();
    needs_sync::<winit::cursor::CustomCursor>();
}

#[test]
fn owned_display_handle_sync() {
    needs_sync::<winit::event_loop::OwnedDisplayHandle>();
}