smithay/src/reexports.rs

22 lines
570 B
Rust
Raw Normal View History

2018-12-13 17:48:54 +00:00
//! Reexports of crates, that are part of the public api, for convenience
#[cfg(feature = "dbus")]
pub use dbus;
#[cfg(feature = "backend_drm")]
pub use drm;
#[cfg(feature = "backend_drm_gbm")]
pub use gbm;
#[cfg(feature = "backend_drm_gbm")]
pub use image;
#[cfg(feature = "backend_libinput")]
pub use input;
#[cfg(any(feature = "backend_udev", feature = "backend_drm"))]
pub use nix;
#[cfg(feature = "backend_session_logind")]
pub use systemd;
#[cfg(feature = "backend_udev")]
pub use udev;
pub use wayland_commons;
pub use wayland_protocols;
pub use wayland_server;