Patched comfy due to keyboard issues

This commit is contained in:
Glaeder 2024-07-06 15:47:49 +02:00
parent 3904a7c824
commit b6546dc145
2 changed files with 8 additions and 6 deletions

9
Cargo.lock generated
View file

@ -478,8 +478,7 @@ dependencies = [
[[package]] [[package]]
name = "comfy" name = "comfy"
version = "0.4.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/Plonq/comfy/?branch=101-fix-keyboard-events#6293590aec51875e9832ef05a670149d371f849c"
checksum = "5e8ff7c66a696e9a9e5523d0c4a6306711acb7f6d490d9c412b044a8c95f17f4"
dependencies = [ dependencies = [
"comfy-core", "comfy-core",
"comfy-wgpu", "comfy-wgpu",
@ -499,8 +498,7 @@ dependencies = [
[[package]] [[package]]
name = "comfy-core" name = "comfy-core"
version = "0.4.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/Plonq/comfy/?branch=101-fix-keyboard-events#6293590aec51875e9832ef05a670149d371f849c"
checksum = "398260ce649e9d35adc3ae75565406aab9b360c1e892a48ae3606e3138df150b"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -558,8 +556,7 @@ dependencies = [
[[package]] [[package]]
name = "comfy-wgpu" name = "comfy-wgpu"
version = "0.4.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/Plonq/comfy/?branch=101-fix-keyboard-events#6293590aec51875e9832ef05a670149d371f849c"
checksum = "6118f09fd99577503ba6861dac53840bae6cf202d70f97042f5cdf43c222e39a"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"comfy-core", "comfy-core",

View file

@ -17,3 +17,8 @@ opt-level = 3
[dependencies] [dependencies]
comfy = { version = "0.4.0", features = ["wayland"] } comfy = { version = "0.4.0", features = ["wayland"] }
log = "0.4.22" log = "0.4.22"
[patch.crates-io]
# https://github.com/darthdeus/comfy/issues/101
# https://github.com/darthdeus/comfy/pull/102
comfy = { git = "https://github.com/Plonq/comfy/", branch = "101-fix-keyboard-events" }