diff --git a/Cargo.lock b/Cargo.lock index b4f0393..3bda145 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -132,7 +132,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "x11rb", + "x11rb 0.14.0", ] [[package]] @@ -2170,7 +2170,7 @@ dependencies = [ "wayland-protocols-plasma", "wayland-protocols-wlr", "x11-clipboard", - "x11rb", + "x11rb 0.13.2", "xkbcommon", "zed-scap", "zed-xim", @@ -6813,7 +6813,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "662d74b3d77e396b8e5beb00b9cad6a9eccf40b2ef68cc858784b14c41d535a3" dependencies = [ "libc", - "x11rb", + "x11rb 0.13.2", ] [[package]] @@ -6826,16 +6826,33 @@ dependencies = [ "gethostname", "libc", "rustix 1.1.4", - "x11rb-protocol", + "x11rb-protocol 0.13.2", "xcursor", ] +[[package]] +name = "x11rb" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a8885a854a8bfdf87a301e53e41b17c5f8f33639903131338b997b1eb614f44" +dependencies = [ + "gethostname", + "rustix 1.1.4", + "x11rb-protocol 0.14.0", +] + [[package]] name = "x11rb-protocol" version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd" +[[package]] +name = "x11rb-protocol" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acf4d1bc32aa46eec18caa634ec3cf4c05bfa151f12b93b510b15190f69a1ca8" + [[package]] name = "xcb" version = "1.7.0" @@ -7096,7 +7113,7 @@ dependencies = [ "ahash", "hashbrown 0.14.5", "log", - "x11rb", + "x11rb 0.13.2", "xim-ctext", "xim-parser", ] diff --git a/Cargo.toml b/Cargo.toml index 5796b0a..950980c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ schemars = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.51", features = ["macros", "rt"] } -x11rb = { version = "0.13.2", features = ["xtest"] } +x11rb = { version = "0.14.0", features = ["xtest"] } [profile.release] codegen-units = 1