Desktop: Pin the muda crate to commit that includes a necessary dependency update
This commit is contained in:
parent
4f4ec7ffff
commit
a42cad8bfb
|
|
@ -2414,7 +2414,7 @@ dependencies = [
|
|||
"graphene-std",
|
||||
"graphite-editor",
|
||||
"image",
|
||||
"keyboard-types 0.8.1",
|
||||
"keyboard-types",
|
||||
"ron",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
|
@ -3181,17 +3181,6 @@ dependencies = [
|
|||
"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]]
|
||||
name = "keyboard-types"
|
||||
version = "0.8.1"
|
||||
|
|
@ -3538,11 +3527,11 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "muda"
|
||||
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 = [
|
||||
"crossbeam-channel",
|
||||
"dpi",
|
||||
"keyboard-types 0.7.0",
|
||||
"keyboard-types",
|
||||
"objc2 0.6.3",
|
||||
"objc2-app-kit 0.3.2",
|
||||
"objc2-core-foundation",
|
||||
|
|
@ -7745,7 +7734,7 @@ dependencies = [
|
|||
"bitflags 2.9.3",
|
||||
"cursor-icon",
|
||||
"dpi",
|
||||
"keyboard-types 0.8.1",
|
||||
"keyboard-types",
|
||||
"raw-window-handle",
|
||||
"serde",
|
||||
"smol_str",
|
||||
|
|
|
|||
|
|
@ -25,7 +25,10 @@ graphite-desktop-wrapper = { path = "wrapper" }
|
|||
graphite-desktop-embedded-resources = { path = "embedded-resources", optional = 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 }
|
||||
futures = { workspace = true }
|
||||
cef = { workspace = true }
|
||||
|
|
@ -67,4 +70,4 @@ windows = { version = "0.58.0", features = [
|
|||
objc2 = { version = "0.6.1", default-features = false }
|
||||
objc2-foundation = { 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 }
|
||||
|
|
|
|||
Loading…
Reference in New Issue