Skip to content

Commit e6e17ad

Browse files
fix(core): add std feature to raw-window-handle (#9954)
1 parent ea78bf5 commit e6e17ad

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changes/raw-window-handle-std.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri": patch:bug
3+
---
4+
5+
Add `std` feature to `raw-window-handle` crate so that using `default-features = false` on `tauri` crate can work

core/tauri/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ dirs-next = "2.0"
6363
percent-encoding = "2.3"
6464
reqwest = { version = "0.12", default-features = false, features = [ "json", "stream" ] }
6565
bytes = { version = "1", features = [ "serde" ] }
66-
raw-window-handle = "0.6"
66+
raw-window-handle = { version = "0.6", features = [ "std" ]}
6767
glob = "0.3"
6868
urlpattern = "0.2"
6969
mime = "0.3"

0 commit comments

Comments
 (0)