summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c9a735e5..cbda3c87 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -224,8 +224,10 @@ pub use settings::Settings;
pub use runtime::alignment;
pub use runtime::futures;
-pub use runtime::system;
pub use runtime::{
Alignment, Background, Color, Command, ContentFit, Font, Length, Point,
Rectangle, Size, Subscription, Vector,
};
+
+#[cfg(feature = "system")]
+pub use runtime::system;