wayland: bump dependencies
Update SCTK as a follow-up to 1170554dbd (ignore events to dead
objects) fixing it for wl_output.
This commit is contained in:
parent
ee3ab33a7c
commit
dc99920612
3 changed files with 26 additions and 9 deletions
14
Cargo.toml
14
Cargo.toml
|
|
@ -232,7 +232,7 @@ windows-sys = { version = "0.52.0", features = [
|
||||||
[target.'cfg(all(unix, not(any(target_os = "redox", target_family = "wasm", target_os = "android", target_vendor = "apple"))))'.dependencies]
|
[target.'cfg(all(unix, not(any(target_os = "redox", target_family = "wasm", target_os = "android", target_vendor = "apple"))))'.dependencies]
|
||||||
ahash = { version = "0.8.7", features = ["no-rng"], optional = true }
|
ahash = { version = "0.8.7", features = ["no-rng"], optional = true }
|
||||||
bytemuck = { version = "1.13.1", default-features = false, optional = true }
|
bytemuck = { version = "1.13.1", default-features = false, optional = true }
|
||||||
calloop = "0.12.3"
|
calloop = "0.13.0"
|
||||||
libc = "0.2.64"
|
libc = "0.2.64"
|
||||||
memmap2 = { version = "0.9.0", optional = true }
|
memmap2 = { version = "0.9.0", optional = true }
|
||||||
percent-encoding = { version = "2.0", optional = true }
|
percent-encoding = { version = "2.0", optional = true }
|
||||||
|
|
@ -242,18 +242,18 @@ rustix = { version = "0.38.4", default-features = false, features = [
|
||||||
"thread",
|
"thread",
|
||||||
"process",
|
"process",
|
||||||
] }
|
] }
|
||||||
sctk = { package = "smithay-client-toolkit", version = "0.18.0", default-features = false, features = [
|
sctk = { package = "smithay-client-toolkit", version = "0.19.2", default-features = false, features = [
|
||||||
"calloop",
|
"calloop",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
sctk-adwaita = { version = "0.9.0", default-features = false, optional = true }
|
sctk-adwaita = { version = "0.10.1", default-features = false, optional = true }
|
||||||
wayland-backend = { version = "0.3.0", default-features = false, features = [
|
wayland-backend = { version = "0.3.5", default-features = false, features = [
|
||||||
"client_system",
|
"client_system",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
wayland-client = { version = "0.31.1", optional = true }
|
wayland-client = { version = "0.31.4", optional = true }
|
||||||
wayland-protocols = { version = "0.31.0", features = [
|
wayland-protocols = { version = "0.32.2", features = [
|
||||||
"staging",
|
"staging",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
wayland-protocols-plasma = { version = "0.2.0", features = [
|
wayland-protocols-plasma = { version = "0.3.2", features = [
|
||||||
"client",
|
"client",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
x11-dl = { version = "2.19.1", optional = true }
|
x11-dl = { version = "2.19.1", optional = true }
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,6 @@ deny = []
|
||||||
skip = [
|
skip = [
|
||||||
{ name = "raw-window-handle" }, # we intentionally have multiple versions of this
|
{ name = "raw-window-handle" }, # we intentionally have multiple versions of this
|
||||||
{ name = "bitflags" }, # the ecosystem is in the process of migrating.
|
{ name = "bitflags" }, # the ecosystem is in the process of migrating.
|
||||||
{ name = "libloading" }, # x11rb uses a different version until the next update
|
|
||||||
]
|
]
|
||||||
skip-tree = []
|
skip-tree = []
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -341,12 +341,30 @@ impl CompositorHandler for WinitState {
|
||||||
&mut self,
|
&mut self,
|
||||||
_: &Connection,
|
_: &Connection,
|
||||||
_: &QueueHandle<Self>,
|
_: &QueueHandle<Self>,
|
||||||
_: &wayland_client::protocol::wl_surface::WlSurface,
|
_: &WlSurface,
|
||||||
_: wayland_client::protocol::wl_output::Transform,
|
_: wayland_client::protocol::wl_output::Transform,
|
||||||
) {
|
) {
|
||||||
// TODO(kchibisov) we need to expose it somehow in winit.
|
// TODO(kchibisov) we need to expose it somehow in winit.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn surface_enter(
|
||||||
|
&mut self,
|
||||||
|
_: &Connection,
|
||||||
|
_: &QueueHandle<Self>,
|
||||||
|
_: &WlSurface,
|
||||||
|
_: &WlOutput,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
fn surface_leave(
|
||||||
|
&mut self,
|
||||||
|
_: &Connection,
|
||||||
|
_: &QueueHandle<Self>,
|
||||||
|
_: &WlSurface,
|
||||||
|
_: &WlOutput,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
fn scale_factor_changed(
|
fn scale_factor_changed(
|
||||||
&mut self,
|
&mut self,
|
||||||
_: &Connection,
|
_: &Connection,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue