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,20 +3,18 @@
* Copyright (c) 2024, Richard Acayan. All rights reserved.
*/
extern crate polling;
mod wayland;
mod core;
mod wayland;
use core::Layout;
use crate::core::Layout;
use crate::wayland::Dispatcher;
use polling::Event;
use polling::Events;
use polling::Poller;
use std::path::Path;
use std::time::Instant;
use wayland::Dispatcher;
use wayland::wayland_client::Connection;
use wayland::wayland_client::globals;
use wayland_client::Connection;
use wayland_client::globals;
fn main()
{