chore: migrate to Rust 2024 edition
This commit is contained in:
parent
6ed7bdb45f
commit
f95869a631
16 changed files with 194 additions and 161 deletions
|
|
@ -1,10 +1,11 @@
|
|||
use cosmic::{
|
||||
iced::{futures::SinkExt, stream, Subscription},
|
||||
widget, Task,
|
||||
Task,
|
||||
iced::{Subscription, futures::SinkExt, stream},
|
||||
widget,
|
||||
};
|
||||
use gio::{glib, prelude::*};
|
||||
use std::{any::TypeId, cell::Cell, future::pending, path::PathBuf, sync::Arc};
|
||||
use tokio::sync::{mpsc, Mutex};
|
||||
use tokio::sync::{Mutex, mpsc};
|
||||
|
||||
use super::{Mounter, MounterAuth, MounterItem, MounterItems, MounterMessage};
|
||||
use crate::{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
use cosmic::{iced::Subscription, widget, Task};
|
||||
use cosmic::{Task, iced::Subscription, widget};
|
||||
use once_cell::sync::Lazy;
|
||||
use std::{collections::BTreeMap, fmt, path::PathBuf, sync::Arc};
|
||||
use tokio::sync::mpsc;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue