summaryrefslogtreecommitdiffstats
path: root/web/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-18 23:57:02 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-18 23:57:02 +0100
commit9ca65c9f18454ba2bb3ff5667d9618a1491771db (patch)
treee1cb5b415fc64fd169509fcf98f74819a856e674 /web/src/lib.rs
parent0f2e20f5e5b1f0658ab4e6cbe6fdda9ca97f2b36 (diff)
downloadiced-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.rs4
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.