treewide: use Rust 2018 import paths
Rust 2018 is required for D-Bus support with tokio/zbus.
This commit is contained in:
parent
f282a741dd
commit
78f389beaa
13 changed files with 119 additions and 135 deletions
12
src/main.rs
12
src/main.rs
|
|
@ -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()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue