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!
🎉
This commit is contained in:
Héctor Ramón Jiménez 2022-02-11 17:51:33 +07:00
parent 897188317b
commit 66d69b5c9a
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
7 changed files with 344 additions and 14 deletions

View file

@ -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;