From 62e45fa75da15be2205ade63e4af8d16dd46f23d Mon Sep 17 00:00:00 2001 From: Victor Berger Date: Mon, 30 Oct 2017 07:27:43 +0100 Subject: [PATCH] wayland: update dependencies (#334) --- Cargo.toml | 8 ++++---- src/platform/linux/wayland/event_loop.rs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 57af14d5..e1383f28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,9 +34,9 @@ kernel32-sys = "0.2" dwmapi-sys = "0.1" [target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))'.dependencies] -wayland-client = { version = "0.11.2", features = ["dlopen"] } -wayland-protocols = { version = "0.11.2", features = ["unstable_protocols"] } -wayland-kbd = "0.12.0" -wayland-window = "0.11.0" +wayland-client = { version = "0.12.0", features = ["dlopen"] } +wayland-protocols = { version = "0.12.0", features = ["unstable_protocols"] } +wayland-kbd = "0.13.0" +wayland-window = "0.12.0" tempfile = "2.1" x11-dl = "2.8" diff --git a/src/platform/linux/wayland/event_loop.rs b/src/platform/linux/wayland/event_loop.rs index 46046870..a5bfc75d 100644 --- a/src/platform/linux/wayland/event_loop.rs +++ b/src/platform/linux/wayland/event_loop.rs @@ -18,7 +18,7 @@ use wayland_client::protocol::{wl_compositor, wl_seat, wl_shell, wl_shm, wl_subc wl_pointer, wl_keyboard}; use super::wayland_window::{DecoratedSurface, Shell, init_decorated_surface, DecoratedSurfaceImplementation}; -use super::wayland_protocols::unstable::xdg_shell::client::zxdg_shell_v6; +use super::wayland_protocols::unstable::xdg_shell::v6::client::zxdg_shell_v6; use super::tempfile;