wayland-server 0.7.2

Bindings to the standard C implementation of the wayland protocol, server side.
Documentation
1
2
3
4
5
6
7
8
#[macro_use] extern crate wayland_server;


fn main() {
    let (display, mut event_loop) = wayland_server::create_display();
    
    event_loop.run();
}