Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. argh = "0.1.4"
  16. serde = "1.0.120"
  17. serde_json = "1.0.61"
  18. thiserror = "1.0.23"
  19. log = "0.4.13"
  20. html-escape = "0.2.9"
  21. wry = "0.12.2"
  22. futures-channel = "0.3"
  23. tokio = { version = "1.12.0", features = [
  24. "sync",
  25. "rt-multi-thread",
  26. "rt",
  27. "time",
  28. ], optional = true, default-features = false }
  29. dioxus-core-macro = { path = "../core-macro", version = "^0.1.7" }
  30. dioxus-html = { path = "../html", features = ["serialize"], version = "^0.1.6" }
  31. webbrowser = "0.5.5"
  32. mime_guess = "2.0.3"
  33. [features]
  34. default = ["tokio_runtime"]
  35. tokio_runtime = ["tokio"]
  36. [dev-dependencies]
  37. dioxus-hooks = { path = "../hooks" }