diff --git a/Cargo.lock b/Cargo.lock index 3a7e0df..583ab1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -507,7 +507,7 @@ dependencies = [ "tray-icon", "ureq", "windows 0.61.3", - "x11rb", + "x11rb 0.14.0", ] [[package]] @@ -2377,7 +2377,7 @@ dependencies = [ "windows-numerics", "windows-registry 0.5.3", "x11-clipboard", - "x11rb", + "x11rb 0.13.2", "xkbcommon", "zed-font-kit", "zed-scap", @@ -7457,7 +7457,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "662d74b3d77e396b8e5beb00b9cad6a9eccf40b2ef68cc858784b14c41d535a3" dependencies = [ "libc", - "x11rb", + "x11rb 0.13.2", ] [[package]] @@ -7470,16 +7470,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 = "xattr" version = "0.2.3" @@ -7776,7 +7793,7 @@ dependencies = [ "ahash", "hashbrown 0.14.5", "log", - "x11rb", + "x11rb 0.13.2", "xim-ctext", "xim-parser", ] diff --git a/crates/aura/Cargo.toml b/crates/aura/Cargo.toml index a20a2d2..3ba76b0 100644 --- a/crates/aura/Cargo.toml +++ b/crates/aura/Cargo.toml @@ -48,7 +48,7 @@ ksni = { version = "0.3", default-features = false, features = ["blocking", "asy # GPUI exposes no move API, so we issue a ConfigureWindow ourselves against the # XCB window id (see platform::set_window_origin). Already in the tree via gpui. # No-op on Wayland, where the compositor owns surface placement. -x11rb = "0.13" +x11rb = "0.14" [target.'cfg(not(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd")))'.dependencies] tray-icon = { version = "0.24", default-features = false }