summaryrefslogtreecommitdiffstats
path: root/core/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-03-17 07:28:28 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-03-17 07:30:05 +0100
commit05beb878527b4d4e3141ca5ba09337d6ada858be (patch)
treed95ab2be4be002618eb054c61007b2ab661cd164 /core/src/lib.rs
parent1cd1582506810255394d2f9019597e9252bd8daa (diff)
downloadiced-05beb878527b4d4e3141ca5ba09337d6ada858be.tar.gz
iced-05beb878527b4d4e3141ca5ba09337d6ada858be.tar.bz2
iced-05beb878527b4d4e3141ca5ba09337d6ada858be.zip
Move common keyboard types to `iced_core`
Also expose them in `iced` through `iced_native` and `iced_web`.
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r--core/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs
index ea5e8b43..c2887a0b 100644
--- a/core/src/lib.rs
+++ b/core/src/lib.rs
@@ -14,6 +14,7 @@
#![deny(unused_results)]
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]
+pub mod keyboard;
mod align;
mod background;