Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "dioxus-desktop"
  3. version = "0.1.5"
  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.7", 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.6"}
  30. dioxus-html = { path = "../html", features = ["serialize"], version ="^0.1.4"}
  31. webbrowser = "0.5.5"
  32. [features]
  33. default = ["tokio_runtime"]
  34. tokio_runtime = ["tokio"]
  35. [dev-dependencies]
  36. dioxus-hooks = { path = "../hooks" }