diff options
author | 2019-12-18 23:57:02 +0100 | |
---|---|---|
committer | 2019-12-18 23:57:02 +0100 | |
commit | 9ca65c9f18454ba2bb3ff5667d9618a1491771db (patch) | |
tree | e1cb5b415fc64fd169509fcf98f74819a856e674 /web/src/lib.rs | |
parent | 0f2e20f5e5b1f0658ab4e6cbe6fdda9ca97f2b36 (diff) | |
download | iced-9ca65c9f18454ba2bb3ff5667d9618a1491771db.tar.gz iced-9ca65c9f18454ba2bb3ff5667d9618a1491771db.tar.bz2 iced-9ca65c9f18454ba2bb3ff5667d9618a1491771db.zip |
Fix missing `Subscription` type in `iced_web`
Diffstat (limited to 'web/src/lib.rs')
-rw-r--r-- | web/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/src/lib.rs b/web/src/lib.rs index 782bcf93..d4c422d2 100644 --- a/web/src/lib.rs +++ b/web/src/lib.rs @@ -61,18 +61,22 @@ use std::{cell::RefCell, rc::Rc}; mod bus; mod element; +mod hasher; pub mod style; +pub mod subscription; pub mod widget; pub use bus::Bus; pub use dodrio; pub use element::Element; +pub use hasher::Hasher; pub use iced_core::{ Align, Background, Color, Command, Font, HorizontalAlignment, Length, VerticalAlignment, }; pub use style::Style; +pub use subscription::Subscription; pub use widget::*; /// An interactive web application. |