summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 8209952f..3df7183e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -167,8 +167,10 @@
mod element;
mod error;
mod result;
+#[cfg(feature = "application")]
mod sandbox;
+#[cfg(feature = "application")]
pub mod application;
pub mod clipboard;
pub mod executor;
@@ -196,6 +198,7 @@ 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;
@@ -203,6 +206,7 @@ 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;