summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-04-30 13:37:57 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-04-30 13:37:57 +0200
commit93bfe2c75ec97ef78f993926c703f040dde4a5f3 (patch)
tree80582ee46dfd06cf5f69d92e3b6d66c0c766c28e /src
parent5eefa5d4ead9ebfac7dab1db9aebf9797d2dad38 (diff)
downloadiced-93bfe2c75ec97ef78f993926c703f040dde4a5f3.tar.gz
iced-93bfe2c75ec97ef78f993926c703f040dde4a5f3.tar.bz2
iced-93bfe2c75ec97ef78f993926c703f040dde4a5f3.zip
Expose `system` module through feature flag
Diffstat (limited to 'src')
-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;