summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-09-26 15:58:12 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-09-26 15:58:12 +0200
commit98b5832917fa709bd9977e776d629e2b0177d935 (patch)
treea105ccd9335087e1c67103ce960c5f966df048b0 /src/lib.rs
parent78c9d5bedfdee566c4cb4371e17b48901bab99ae (diff)
downloadiced-98b5832917fa709bd9977e776d629e2b0177d935.tar.gz
iced-98b5832917fa709bd9977e776d629e2b0177d935.tar.bz2
iced-98b5832917fa709bd9977e776d629e2b0177d935.zip
Remove `application` feature from `iced` crate
Diffstat (limited to '')
-rw-r--r--src/lib.rs4
1 files changed, 0 insertions, 4 deletions
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;