feat(executor): add cosmic::executor::Default

This commit is contained in:
Michael Aaron Murphy 2023-01-27 03:43:48 +01:00 committed by Michael Murphy
parent a1b3d6ec38
commit cc21b9baa1
4 changed files with 13 additions and 7 deletions

View file

@ -14,15 +14,14 @@ pub use iced_winit;
#[cfg(feature = "applet")]
pub mod applet;
pub mod executor;
pub mod font;
pub mod keyboard_nav;
pub mod theme;
pub mod widget;
#[cfg(feature = "tokio")]
mod single_thread_executor;
#[cfg(feature = "tokio")]
pub use single_thread_executor::SingleThreadExecutor;
pub use executor::single::Executor as SingleThreadExecutor;
pub mod settings;
pub use settings::settings;