summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-18 14:42:48 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-07-08 10:59:56 +0200
commitafd9274de26ccf65285df02007b4ddb697bea9a3 (patch)
treeafc8e452251db84a132367753104613d2d4567b7 /native/src/lib.rs
parentb1afadf1a2162e236525c466b6b3099a2623a2de (diff)
downloadiced-afd9274de26ccf65285df02007b4ddb697bea9a3.tar.gz
iced-afd9274de26ccf65285df02007b4ddb697bea9a3.tar.bz2
iced-afd9274de26ccf65285df02007b4ddb697bea9a3.zip
Draft `ComboBox` and `Menu` layer
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index 6974c2bd..99d80126 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -31,11 +31,12 @@
//! [`UserInterface`]: struct.UserInterface.html
//! [renderer]: renderer/index.html
//#![deny(missing_docs)]
-#![deny(missing_debug_implementations)]
+//#![deny(missing_debug_implementations)]
#![deny(unused_results)]
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]
pub mod keyboard;
+pub mod layer;
pub mod layout;
pub mod mouse;
pub mod program;
@@ -48,7 +49,6 @@ mod clipboard;
mod element;
mod event;
mod hasher;
-mod layer;
mod overlay;
mod runtime;
mod user_interface;