fix(core): add std feature to raw-window-handle (#9954)

This commit is contained in:
Tony 2024-06-04 10:19:54 +08:00 committed by GitHub
parent ea78bf5558
commit e6e17ad1c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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"