winit 0.13.0

Cross-platform window creation library.
Documentation
1
2
3
4
5
6
7
8
9
extern crate winit;

fn needs_sync<T:Sync>() {}

#[test]
fn window_sync() {
    // ensures that `winit::Window` implements `Sync`
    needs_sync::<winit::Window>();
}