diff --git a/Cargo.lock b/Cargo.lock index c446eb525526..8125a501c950 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -775,7 +775,7 @@ dependencies = [ "gtk4", "proc-macro-crate", "proc-macro2", - "quick-xml 0.36.1", + "quick-xml", "quote", "syn", "trybuild2", @@ -1287,15 +1287,6 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "quick-xml" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f24d770aeca0eacb81ac29dfbc55ebcc09312fdd1f8bbecdc7e4a84e000e3b4" -dependencies = [ - "memchr", -] - [[package]] name = "quick-xml" version = "0.36.1" @@ -2147,9 +2138,9 @@ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" [[package]] name = "wayland-backend" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90e11ce2ca99c97b940ee83edbae9da2d56a08f9ea8158550fd77fa31722993" +checksum = "056535ced7a150d45159d3a8dc30f91a2e2d588ca0b23f70e56033622b8016f6" dependencies = [ "cc", "downcast-rs", @@ -2161,9 +2152,9 @@ dependencies = [ [[package]] name = "wayland-client" -version = "0.31.5" +version = "0.31.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e321577a0a165911bdcfb39cf029302479d7527b517ee58ab0f6ad09edf0943" +checksum = "e3f45d1222915ef1fd2057220c1d9d9624b7654443ea35c3877f7a52bd0a5a2d" dependencies = [ "bitflags 2.6.0", "rustix", @@ -2173,20 +2164,20 @@ dependencies = [ [[package]] name = "wayland-scanner" -version = "0.31.4" +version = "0.31.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7b56f89937f1cf2ee1f1259cf2936a17a1f45d8f0aa1019fae6d470d304cfa6" +checksum = "597f2001b2e5fc1121e3d5b9791d3e78f05ba6bfa4641053846248e3a13661c3" dependencies = [ "proc-macro2", - "quick-xml 0.34.0", + "quick-xml", "quote", ] [[package]] name = "wayland-sys" -version = "0.31.4" +version = "0.31.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43676fe2daf68754ecf1d72026e4e6c15483198b5d24e888b74d3f22f887a148" +checksum = "efa8ac0d8e8ed3e3b5c9fc92c7881406a268e11555abe36493efabe649a29e09" dependencies = [ "dlib", "log", diff --git a/deny.toml b/deny.toml index ab2ee309edf9..d293822f4ed4 100644 --- a/deny.toml +++ b/deny.toml @@ -33,10 +33,6 @@ allow-git = [ "https://github.com/gtk-rs/gtk-rs-core", ] -# wayland-scanner depends on an older version -[[bans.skip]] -name = "quick-xml" -version = "0.34.0" # rustix/errno depends on an older version [[bans.skip]] name = "windows-sys" diff --git a/gdk4-wayland/Cargo.toml b/gdk4-wayland/Cargo.toml index 4041b7d74ed0..cb320070d120 100644 --- a/gdk4-wayland/Cargo.toml +++ b/gdk4-wayland/Cargo.toml @@ -27,7 +27,7 @@ gdk.workspace= true gio.workspace = true glib.workspace = true libc.workspace = true -wayland-client = {version = "0.31.5", optional = true} +wayland-client = {version = "0.31.6", optional = true} wayland-backend = {version = "0.3.0", optional = true, features = ["client_system"]} khronos-egl = {version = "6.0", optional = true}