Desktop: Pin the muda crate to commit that includes a necessary dependency update

This commit is contained in:
Timon 2026-01-06 04:25:29 +01:00
parent 4f4ec7ffff
commit a42cad8bfb
2 changed files with 9 additions and 17 deletions

19
Cargo.lock generated
View File

@ -2414,7 +2414,7 @@ dependencies = [
"graphene-std", "graphene-std",
"graphite-editor", "graphite-editor",
"image", "image",
"keyboard-types 0.8.1", "keyboard-types",
"ron", "ron",
"serde", "serde",
"serde_json", "serde_json",
@ -3181,17 +3181,6 @@ dependencies = [
"wasm-bindgen", "wasm-bindgen",
] ]
[[package]]
name = "keyboard-types"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
dependencies = [
"bitflags 2.9.3",
"serde",
"unicode-segmentation",
]
[[package]] [[package]]
name = "keyboard-types" name = "keyboard-types"
version = "0.8.1" version = "0.8.1"
@ -3538,11 +3527,11 @@ dependencies = [
[[package]] [[package]]
name = "muda" name = "muda"
version = "0.17.1" version = "0.17.1"
source = "git+https://github.com/tauri-apps/muda.git?rev=dca083660d04209109ae854b9a9436a809daf409#dca083660d04209109ae854b9a9436a809daf409" source = "git+https://github.com/timon-schelling/muda.git?rev=e5bc28bbd6781b18afbfc237981f9ef47eddf863#e5bc28bbd6781b18afbfc237981f9ef47eddf863"
dependencies = [ dependencies = [
"crossbeam-channel", "crossbeam-channel",
"dpi", "dpi",
"keyboard-types 0.7.0", "keyboard-types",
"objc2 0.6.3", "objc2 0.6.3",
"objc2-app-kit 0.3.2", "objc2-app-kit 0.3.2",
"objc2-core-foundation", "objc2-core-foundation",
@ -7745,7 +7734,7 @@ dependencies = [
"bitflags 2.9.3", "bitflags 2.9.3",
"cursor-icon", "cursor-icon",
"dpi", "dpi",
"keyboard-types 0.8.1", "keyboard-types",
"raw-window-handle", "raw-window-handle",
"serde", "serde",
"smol_str", "smol_str",

View File

@ -25,7 +25,10 @@ graphite-desktop-wrapper = { path = "wrapper" }
graphite-desktop-embedded-resources = { path = "embedded-resources", optional = true } graphite-desktop-embedded-resources = { path = "embedded-resources", optional = true }
wgpu = { workspace = true } wgpu = { workspace = true }
winit = { workspace = true, features = [ "wayland-csd-adwaita-notitlebar", "serde" ] } winit = { workspace = true, features = [
"wayland-csd-adwaita-notitlebar",
"serde",
] }
thiserror = { workspace = true } thiserror = { workspace = true }
futures = { workspace = true } futures = { workspace = true }
cef = { workspace = true } cef = { workspace = true }
@ -67,4 +70,4 @@ windows = { version = "0.58.0", features = [
objc2 = { version = "0.6.1", default-features = false } objc2 = { version = "0.6.1", default-features = false }
objc2-foundation = { version = "0.3.2", default-features = false } objc2-foundation = { version = "0.3.2", default-features = false }
objc2-app-kit = { version = "0.3.2", default-features = false } objc2-app-kit = { version = "0.3.2", default-features = false }
muda = { git = "https://github.com/tauri-apps/muda.git", rev = "dca083660d04209109ae854b9a9436a809daf409", default-features = false } muda = { git = "https://github.com/timon-schelling/muda.git", rev = "e5bc28bbd6781b18afbfc237981f9ef47eddf863", default-features = false }