From eddbe3c70854c5399d2b0e162d49686c503913c3 Mon Sep 17 00:00:00 2001 From: Victor Berger Date: Sat, 25 Apr 2020 09:56:05 +0200 Subject: [PATCH] Update wayland-rs to 0.26 --- Cargo.toml | 10 +++++----- anvil/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e180808..ca8f1af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,11 +28,11 @@ systemd = { version = "0.4.0", optional = true } tempfile = "3.0" thiserror = "1" udev = { version = "0.4", optional = true } -wayland-commons = { version = "0.25.0", optional = true } -wayland-egl = { version = "0.25.0", optional = true } -wayland-protocols = { version = "0.25.0", features = ["unstable_protocols", "server"], optional = true } -wayland-server = { version = "0.25.0", optional = true } -wayland-sys = { version = "0.25.0", optional = true } +wayland-commons = { version = "0.26", optional = true } +wayland-egl = { version = "0.26", optional = true } +wayland-protocols = { version = "0.26", features = ["unstable_protocols", "server"], optional = true } +wayland-server = { version = "0.26", optional = true } +wayland-sys = { version = "0.26", optional = true } winit = { version = "0.22.0", optional = true } xkbcommon = "0.4.0" # TODO: remove as soon as drm-rs provides an error implementing Error diff --git a/anvil/Cargo.toml b/anvil/Cargo.toml index 8e64cd5..263fff5 100644 --- a/anvil/Cargo.toml +++ b/anvil/Cargo.toml @@ -14,7 +14,7 @@ rand = "0.7" slog = { version = "2.1.1" } slog-term = "2.3" slog-async = "2.2" -wayland-server = "0.25.0" +wayland-server = "0.26" xkbcommon = "0.4.0" [dependencies.smithay]