chore: upgrade all dependencies

This commit is contained in:
Michael Aaron Murphy 2025-02-19 18:31:56 +01:00
parent 09ae094000
commit dc86f23a73
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
18 changed files with 264 additions and 282 deletions

View file

@ -12,26 +12,20 @@ cosmic-protocols.workspace = true
futures.workspace = true
i18n-embed.workspace = true
i18n-embed-fl.workspace = true
image = { version = "0.25.0", default-features = false }
itertools = "0.13.0"
image = { version = "0.25.5", default-features = false }
itertools = "0.14.0"
libcosmic.workspace = true
memmap2 = "0.9.4"
once_cell = "1.19"
rand = "0.8.5"
memmap2 = "0.9.5"
once_cell = "1.20"
rand = "0.9.0"
rust-embed.workspace = true
rustix.workspace = true
serde = { version = "1.0", features = ["derive"] }
switcheroo-control = { git = "https://github.com/pop-os/dbus-settings-bindings" }
tokio = { version = "1.36.0", features = [
"sync",
"rt",
"rt-multi-thread",
"macros",
"process",
] }
tokio.workspace = true
tracing-log.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
url = "2.5.0"
url = "2.5.4"
zbus.workspace = true
freedesktop-desktop-entry.workspace = true

View file

@ -53,7 +53,7 @@ use freedesktop_desktop_entry::{get_languages_from_env, DesktopEntry};
use futures::future::pending;
use iced::{widget::container, Alignment, Background, Length};
use itertools::Itertools;
use rand::{thread_rng, Rng};
use rand::{rng, Rng};
use std::{borrow::Cow, collections::HashMap, path::PathBuf, rc::Rc, str::FromStr, time::Duration};
use switcheroo_control::Gpu;
use tokio::time::sleep;
@ -1036,8 +1036,8 @@ impl cosmic::Application for CosmicAppList {
}
self.active_list.clear();
let subscription_ctr = self.subscription_ctr;
let mut rng = thread_rng();
let rand_d = rng.gen_range(0..100);
let mut rng = rng();
let rand_d = rng.random_range(0..100);
return iced::Task::perform(
async move {
if let Some(millis) = 2u64