summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-11-11 23:54:59 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-11-11 23:54:59 +0100
commit1db11ba69a3183924a1f4cae91031f4c5051b6dc (patch)
treec0f06dfb1a8c40601270abce69bd26ddceb36287 /native/src/lib.rs
parent73811c394a39c3816c67bffd2cf7d7a93c8803a9 (diff)
downloadiced-1db11ba69a3183924a1f4cae91031f4c5051b6dc.tar.gz
iced-1db11ba69a3183924a1f4cae91031f4c5051b6dc.tar.bz2
iced-1db11ba69a3183924a1f4cae91031f4c5051b6dc.zip
Introduce `event::Status` in `iced_native`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index 067e3c0a..d1252eaf 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -35,6 +35,7 @@
#![deny(unused_results)]
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]
+pub mod event;
pub mod keyboard;
pub mod layout;
pub mod mouse;
@@ -47,7 +48,6 @@ pub mod window;
mod clipboard;
mod element;
-mod event;
mod hasher;
mod runtime;
mod user_interface;