Patch SCTK to the wayland-resize branch

This commit is contained in:
Jeremy Soller 2023-10-31 15:20:35 -06:00
parent bd03db7eef
commit a5ae0672f4
No known key found for this signature in database
GPG key ID: DCFCA852D3906975
2 changed files with 12 additions and 28 deletions

37
Cargo.lock generated
View file

@ -4090,7 +4090,7 @@ checksum = "61270629cc6b4d77ec1907db1033d5c2e1a404c412743621981a871dc9c12339"
dependencies = [
"crossfont",
"log",
"smithay-client-toolkit 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)",
"smithay-client-toolkit",
"tiny-skia 0.7.0",
]
@ -4102,7 +4102,7 @@ dependencies = [
"ab_glyph",
"log",
"memmap2 0.5.10",
"smithay-client-toolkit 0.16.1 (git+https://github.com/pop-os/client-toolkit?branch=wayland-resize)",
"smithay-client-toolkit",
"tiny-skia 0.8.4",
]
@ -4266,25 +4266,6 @@ version = "1.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
[[package]]
name = "smithay-client-toolkit"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "870427e30b8f2cbe64bf43ec4b86e88fe39b0a84b3f15efd9c9c2d020bc86eb9"
dependencies = [
"bitflags 1.3.2",
"calloop",
"dlib",
"lazy_static",
"log",
"memmap2 0.5.10",
"nix 0.24.3",
"pkg-config",
"wayland-client 0.29.5",
"wayland-cursor",
"wayland-protocols",
]
[[package]]
name = "smithay-client-toolkit"
version = "0.16.1"
@ -4309,7 +4290,7 @@ version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8"
dependencies = [
"smithay-client-toolkit 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)",
"smithay-client-toolkit",
"wayland-client 0.29.5",
]
@ -5663,7 +5644,7 @@ dependencies = [
"raw-window-handle 0.4.3",
"raw-window-handle 0.5.2",
"sctk-adwaita 0.4.3",
"smithay-client-toolkit 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)",
"smithay-client-toolkit",
"wasm-bindgen",
"wayland-client 0.29.5",
"wayland-protocols",
@ -5695,7 +5676,7 @@ dependencies = [
"raw-window-handle 0.5.2",
"redox_syscall 0.3.5",
"sctk-adwaita 0.5.4",
"smithay-client-toolkit 0.16.1 (git+https://github.com/pop-os/client-toolkit?branch=wayland-resize)",
"smithay-client-toolkit",
"wasm-bindgen",
"wayland-client 0.29.5",
"wayland-commons",
@ -5904,18 +5885,18 @@ checksum = "dd15f8e0dbb966fd9245e7498c7e9e5055d9e5c8b676b95bd67091cd11a1e697"
[[package]]
name = "zerocopy"
version = "0.7.20"
version = "0.7.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd66a62464e3ffd4e37bd09950c2b9dd6c4f8767380fabba0d523f9a775bc85a"
checksum = "686b7e407015242119c33dab17b8f61ba6843534de936d94368856528eae4dcc"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.20"
version = "0.7.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "255c4596d41e6916ced49cfafea18727b24d67878fa180ddfd69b9df34fd1726"
checksum = "020f3dfe25dfc38dfea49ce62d5d45ecdd7f0d8a724fa63eb36b6eba4ec76806"
dependencies = [
"proc-macro2",
"quote",

View file

@ -32,3 +32,6 @@ features = ["winit"]
[features]
default = []
vi = []
[patch.crates-io]
smithay-client-toolkit = { git = "https://github.com/pop-os/client-toolkit", branch = "wayland-resize" }