From 98b5832917fa709bd9977e776d629e2b0177d935 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 26 Sep 2022 15:58:12 +0200 Subject: Remove `application` feature from `iced` crate --- src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 3df7183e..8209952f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -167,10 +167,8 @@ mod element; mod error; mod result; -#[cfg(feature = "application")] mod sandbox; -#[cfg(feature = "application")] pub mod application; pub mod clipboard; pub mod executor; @@ -198,7 +196,6 @@ pub use iced_native::theme; pub use runtime::event; pub use runtime::subscription; -#[cfg(feature = "application")] pub use application::Application; pub use element::Element; pub use error::Error; @@ -206,7 +203,6 @@ pub use event::Event; pub use executor::Executor; pub use renderer::Renderer; pub use result::Result; -#[cfg(feature = "application")] pub use sandbox::Sandbox; pub use settings::Settings; pub use subscription::Subscription; -- cgit