treewide: use Rust 2018 import paths

Rust 2018 is required for D-Bus support with tokio/zbus.
This commit is contained in:
Richard Acayan 2024-07-24 22:21:30 -04:00
parent f282a741dd
commit 78f389beaa
13 changed files with 119 additions and 135 deletions

View file

@ -3,19 +3,19 @@
* Copyright (c) 2024, Richard Acayan. All rights reserved.
*/
use core::Button;
use core::ModState;
use core::Display;
use core::Graphics;
use core::Keyboard;
use core::Layout;
use crate::core::Button;
use crate::core::Display;
use crate::core::Graphics;
use crate::core::Keyboard;
use crate::core::Layout;
use crate::core::ModState;
use std::sync::Arc;
use std::sync::Mutex;
use wayland::wayland_client::protocol::wl_pointer;
use wayland::wayland_client::protocol::wl_seat;
use wayland::wayland_client::protocol::wl_touch::WlTouch;
use wayland::wayland_client::Dispatch;
use wayland::wayland_client::QueueHandle;
use wayland_client::protocol::wl_pointer;
use wayland_client::protocol::wl_seat;
use wayland_client::protocol::wl_touch::WlTouch;
use wayland_client::Dispatch;
use wayland_client::QueueHandle;
enum PressAction {
Pos(f64, f64),