Revert "Update dependencies"

Something is causing winit deadlock on nested niri exit.

This reverts commit 2ae99224ab.

This reverts commit 0d6843ea67.
This commit is contained in:
Ivan Molodetskikh
2025-05-16 22:49:48 +03:00
parent 2ae99224ab
commit 6169c0312a
4 changed files with 192 additions and 292 deletions

472
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -56,7 +56,7 @@ async-channel = "2.3.1"
async-io = { version = "2.4.0", optional = true }
atomic = "0.6.0"
bitflags.workspace = true
bytemuck = { version = "1.23.0", features = ["derive"] }
bytemuck = { version = "1.22.0", features = ["derive"] }
calloop = { version = "0.14.2", features = ["executor", "futures-io"] }
clap = { workspace = true, features = ["string"] }
clap_complete = "4.5.50"
@@ -74,8 +74,8 @@ log = { version = "0.4.27", features = ["max_level_trace", "release_max_level_de
niri-config = { version = "25.2.0", path = "niri-config" }
niri-ipc = { version = "25.2.0", path = "niri-ipc", features = ["clap"] }
ordered-float = "5.0.0"
pango = { version = "0.20.10", features = ["v1_44"] }
pangocairo = "0.20.10"
pango = { version = "0.20.9", features = ["v1_44"] }
pangocairo = "0.20.7"
pipewire = { git = "https://gitlab.freedesktop.org/pipewire/pipewire-rs.git", optional = true, features = ["v0_3_33"] }
png = "0.17.16"
portable-atomic = { version = "1.11.0", default-features = false, features = ["float"] }
@@ -91,7 +91,7 @@ url = { version = "2.5.4", optional = true }
wayland-backend = "0.3.10"
wayland-scanner = "0.31.6"
xcursor = "0.3.8"
zbus = { version = "5.7.0", optional = true }
zbus = { version = "5.6.0", optional = true }
[dependencies.smithay]
workspace = true

View File

@@ -1,3 +1,5 @@
#![allow(deprecated)] // Maybe De/SerializeDict will be undeprecated in the future.
use std::collections::HashMap;
use zbus::fdo::{self, RequestNameFlags};

View File

@@ -1,3 +1,5 @@
#![allow(deprecated)] // Maybe De/SerializeDict will be undeprecated in the future.
use std::collections::HashMap;
use std::mem;
use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering};