From 804fc046305f9fc495973e5221958a4f1fa25850 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 1 Sep 2022 14:33:02 -0700 Subject: [PATCH] deps: xkbcommon-rs released 0.5 can stop using my git repo for this --- Cargo.lock | 5 +++-- window/Cargo.toml | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9a61301bf..c910faa1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6007,8 +6007,9 @@ dependencies = [ [[package]] name = "xkbcommon" -version = "0.5.0-beta.0" -source = "git+https://github.com/wez/xkbcommon-rs.git?branch=key-by-name#546ba7dbf2ace214b9947fc4646a0f4afd70cb0a" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbee136714379ab22da0280207fdb7f47e0bb940adea97731b65598b8c7a92e" dependencies = [ "libc", "memmap2 0.5.7", diff --git a/window/Cargo.toml b/window/Cargo.toml index 89557f839..97ef607f9 100644 --- a/window/Cargo.toml +++ b/window/Cargo.toml @@ -70,8 +70,7 @@ dirs-next = "2.0" filedescriptor = { version="0.8", path = "../filedescriptor" } x11 = {version ="2.19", features = ["xlib_xcb", "xlib"]} xcb = {version="1.1.1", features=["render", "randr", "dri2", "xkb", "xlib_xcb", "present"]} -xkbcommon = { version = "0.5.0-beta.0", features = ["x11", "wayland"], git="https://github.com/wez/xkbcommon-rs.git", branch="key-by-name"} -#xkbcommon = { version = "0.6", features = ["x11", "wayland"], path="../../xkbcommon-rs" } +xkbcommon = { version = "0.5.0", features = ["x11", "wayland"] } mio = {version="0.8", features=["os-ext"]} libc = "0.2" smithay-client-toolkit = {version = "0.15", default-features=false, optional=true}