Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "dioxus-desktop"
  3. version = "0.1.6"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "Dioxus VirtualDOM renderer for a remote webview instance"
  7. license = "MIT/Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react", "wasm"]
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. dioxus-core = { path = "../core", version = "^0.1.9", features = ["serialize"] }
  15. serde = "1.0.136"
  16. serde_json = "1.0.79"
  17. thiserror = "1.0.30"
  18. log = "0.4.14"
  19. wry = { version = "0.13.1" }
  20. futures-channel = "0.3.21"
  21. tokio = { version = "1.16.1", features = [
  22. "sync",
  23. "rt-multi-thread",
  24. "rt",
  25. "time",
  26. ], optional = true, default-features = false }
  27. dioxus-html = { path = "../html", features = ["serialize"], version = "^0.1.6" }
  28. webbrowser = "0.5.5"
  29. mime_guess = "2.0.3"
  30. dioxus-interpreter-js = { path = "../interpreter", version = "^0.0.0" }
  31. [features]
  32. default = ["tokio_runtime"]
  33. tokio_runtime = ["tokio"]
  34. devtool = ["wry/devtool"]
  35. fullscreen = ["wry/fullscreen"]
  36. transparent = ["wry/transparent"]
  37. tray = ["wry/tray"]
  38. ayatana = ["wry/ayatana"]
  39. [dev-dependencies]
  40. dioxus-core-macro = { path = "../core-macro", version = "^0.1.7" }
  41. dioxus-hooks = { path = "../hooks" }
  42. # image = "0.24.0" # enable this when generating a new desktop image