From 7510b95d8ce2333c85534f01bec192a0df41d268 Mon Sep 17 00:00:00 2001 From: Branan Riley Date: Thu, 26 Apr 2018 08:53:11 -0700 Subject: [PATCH] Set minimum x11-dl version to include Z (#484) Without this pin, an existing cargo.lock for an older winit will not update the x11-dl dependency, and thus will select a version that is missing required new XIM features. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 144ffca8..98adf110 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,5 +48,5 @@ 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.13.0" -x11-dl = "2.17" +x11-dl = "2.17.5" percent-encoding = "1.0"