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;
|
2021-04-25 21:41:37 +00:00
|
|
|
#[cfg(feature = "backend_gbm")]
|
2018-12-13 17:48:54 +00:00
|
|
|
pub use gbm;
|
|
|
|
#[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")]
|
2020-06-27 22:07:48 +00:00
|
|
|
pub use winit;
|