summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-02-11 17:51:33 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-02-11 17:51:33 +0700
commit66d69b5c9a183091e05e82bbe21b3203f75c1b18 (patch)
tree949bf0e2d2948d6f405c78b97f26929d3f008f56 /src/lib.rs
parent897188317b5875cc00a0f1c797790df8ac13687f (diff)
downloadiced-66d69b5c9a183091e05e82bbe21b3203f75c1b18.tar.gz
iced-66d69b5c9a183091e05e82bbe21b3203f75c1b18.tar.bz2
iced-66d69b5c9a183091e05e82bbe21b3203f75c1b18.zip
Expose `iced_pure` through a `pure` feature in `iced`
Besides exposing the `iced_pure` crate, enabling the `pure` feature also provides pure versions of both the `Application` and `Sandbox` traits! :tada:
Diffstat (limited to '')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a110cd18..ab4c5032 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -195,6 +195,9 @@ pub mod time;
pub mod widget;
pub mod window;
+#[cfg(feature = "pure")]
+pub mod pure;
+
#[cfg(all(not(feature = "glow"), feature = "wgpu"))]
use iced_winit as runtime;