Skip to content

Commit

Permalink
fix(core): add std feature to raw-window-handle (#9954)
Browse files Browse the repository at this point in the history
  • Loading branch information
Legend-Master authored Jun 4, 2024
1 parent ea78bf5 commit e6e17ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/raw-window-handle-std.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit e6e17ad

Please sign in to comment.