smithay/src/reexports.rs

25 lines
686 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
2019-02-05 16:26:09 +00:00
pub use calloop;
2018-12-13 17:48:54 +00:00
#[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_udev")]
pub use udev;
2019-02-05 16:26:09 +00:00
#[cfg(feature = "wayland_frontend")]
2018-12-13 17:48:54 +00:00
pub use wayland_commons;
2019-02-05 16:26:09 +00:00
#[cfg(feature = "wayland_frontend")]
2018-12-13 17:48:54 +00:00
pub use wayland_protocols;
2019-02-05 16:26:09 +00:00
#[cfg(feature = "wayland_frontend")]
2018-12-13 17:48:54 +00:00
pub use wayland_server;
2020-06-27 21:58:31 +00:00
#[cfg(feature = "backend_winit")]
pub use winit;