mirror of https://github.com/tauri-apps/tauri
fix(core): add std feature to raw-window-handle (#9954)
This commit is contained in:
parent
ea78bf5558
commit
e6e17ad1c8
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"tauri": patch:bug
|
||||
---
|
||||
|
||||
Add `std` feature to `raw-window-handle` crate so that using `default-features = false` on `tauri` crate can work
|
|
@ -63,7 +63,7 @@ dirs-next = "2.0"
|
|||
percent-encoding = "2.3"
|
||||
reqwest = { version = "0.12", default-features = false, features = [ "json", "stream" ] }
|
||||
bytes = { version = "1", features = [ "serde" ] }
|
||||
raw-window-handle = "0.6"
|
||||
raw-window-handle = { version = "0.6", features = [ "std" ]}
|
||||
glob = "0.3"
|
||||
urlpattern = "0.2"
|
||||
mime = "0.3"
|
||||
|
|
Loading…
Reference in New Issue