Skip to content

Commit 6622b50

Browse files
committed
fix mobile build
1 parent 4651a52 commit 6622b50

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

crates/tauri/Cargo.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,13 @@ specta = { version = "^2.0.0-rc.16", optional = true, default-features = false,
8585
# WARNING: cookie::Cookie is re-exported so bumping this is a breaking change, documented to be done as a minor bump
8686
cookie = "0.18"
8787

88+
# dev server proxy
89+
bytes = { version = "1", features = ["serde"] }
90+
reqwest = { version = "0.12", default-features = false, features = [
91+
"json",
92+
"stream",
93+
] }
94+
8895
# desktop
8996
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "windows", target_os = "macos"))'.dependencies]
9097
muda = { version = "0.17", default-features = false, features = [
@@ -95,14 +102,6 @@ tray-icon = { version = "0.21", default-features = false, features = [
95102
"serde",
96103
], optional = true }
97104

98-
# dev server proxy
99-
bytes = { version = "1", features = ["serde"] }
100-
reqwest = { version = "0.12", default-features = false, features = [
101-
"json",
102-
"stream",
103-
104-
] }
105-
106105
# linux
107106
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
108107
gtk = { version = "0.18", features = ["v3_24"] }

0 commit comments

Comments
 (0)