Browse Source

fix docs.rs build for desktop

Evan Almloff 1 year ago
parent
commit
7fb6dccc0c
1 changed files with 7 additions and 2 deletions
  1. 7 2
      packages/desktop/Cargo.toml

+ 7 - 2
packages/desktop/Cargo.toml

@@ -19,7 +19,7 @@ serde = "1.0.136"
 serde_json = "1.0.79"
 thiserror = { workspace = true }
 log = { workspace = true }
-wry = { version = "0.28.0" }
+wry = { version = "0.28.0", default-features = false, features = ["protocol", "file-drop"] }
 futures-channel = { workspace = true }
 tokio = { workspace = true, features = [
     "sync",
@@ -51,12 +51,17 @@ core-foundation = "0.9.3"
 objc = "0.2.7"
 
 [features]
-default = ["tokio_runtime", "hot-reload"]
+default = ["tokio_runtime", "hot-reload", "wry/objc-exception"]
 tokio_runtime = ["tokio"]
 fullscreen = ["wry/fullscreen"]
 transparent = ["wry/transparent"]
 tray = ["wry/tray"]
 hot-reload = ["dioxus-hot-reload"]
+dox = ["wry/dox"]
+
+[package.metadata.docs.rs]
+default-features = false
+features = [ "dox", "tokio_runtime", "hot-reload" ]
 
 [dev-dependencies]
 dioxus-core-macro = { workspace = true }