diff options
author | 2020-04-30 05:04:45 +0200 | |
---|---|---|
committer | 2020-04-30 05:04:45 +0200 | |
commit | bb9ccc4f62ceea08dc1ef0c6c4d3d219897e44a1 (patch) | |
tree | 5741bbfd344137f88deb8d87584cc70fb0a9f80b /native/src/lib.rs | |
parent | 137664ca88a9bf2398380fd1c04b00c62c868383 (diff) | |
download | iced-bb9ccc4f62ceea08dc1ef0c6c4d3d219897e44a1.tar.gz iced-bb9ccc4f62ceea08dc1ef0c6c4d3d219897e44a1.tar.bz2 iced-bb9ccc4f62ceea08dc1ef0c6c4d3d219897e44a1.zip |
Remove inconsistent `input` module in `iced_native`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index a3b581b3..88bf4423 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -39,8 +39,9 @@ #![deny(unused_results)] #![forbid(unsafe_code)] #![forbid(rust_2018_idioms)] -pub mod input; +pub mod keyboard; pub mod layout; +pub mod mouse; pub mod renderer; pub mod subscription; pub mod widget; |