smithay/src/lib.rs

19 lines
323 B
Rust
Raw Normal View History

#![warn(missing_docs)]
2017-03-11 08:15:17 +00:00
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]
#[macro_use]
2017-01-20 08:54:05 +00:00
extern crate wayland_server;
2017-02-20 21:32:03 +00:00
extern crate nix;
2017-03-07 10:53:57 +00:00
#[cfg(feature = "glutin")]
extern crate glutin;
2017-02-22 10:00:03 +00:00
#[macro_use]
extern crate slog;
extern crate slog_stdlog;
pub mod shm;
2017-03-07 10:53:57 +00:00
pub mod backend;