chore: Update calloop (#173)

* chore: Update calloop

* chore: Allow compiling without windowing system

* CI: Add test without any features
This commit is contained in:
Victoria Brekenfeld 2023-10-02 17:51:33 +02:00 committed by GitHub
parent e1d1b0bad5
commit f91287dec2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 6 deletions

View file

@ -3,21 +3,22 @@
#![allow(clippy::module_name_repetitions)]
#[cfg(all(not(feature = "wayland"), not(feature = "winit")))]
compile_error!("must define `wayland` or `winit` feature");
#[cfg(all(feature = "wayland", feature = "winit"))]
compile_error!("cannot use `wayland` feature with `winit");
/// Recommended default imports.
pub mod prelude {
pub use crate::ext::*;
pub use crate::{Also, ApplicationExt, Apply, Element, Renderer, Theme};
#[cfg(any(feature = "winit", feature = "wayland"))]
pub use crate::ApplicationExt;
pub use crate::{Also, Apply, Element, Renderer, Theme};
}
pub use apply::{Also, Apply};
#[cfg(any(feature = "winit", feature = "wayland"))]
pub mod app;
#[cfg(any(feature = "winit", feature = "wayland"))]
pub use app::{Application, ApplicationExt};
#[cfg(feature = "applet")]