Cargo.toml 975 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "dioxus-desktop"
  3. version = "0.0.0"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. description = "Dioxus VirtualDOM renderer for a remote webview instance"
  7. license = "MIT/Apache-2.0"
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. dioxus-core = { path = "../core", version ="^0.1.3", features = ["serialize"] }
  11. argh = "0.1.4"
  12. serde = "1.0.120"
  13. serde_json = "1.0.61"
  14. thiserror = "1.0.23"
  15. log = "0.4.13"
  16. html-escape = "0.2.9"
  17. wry = "0.12.2"
  18. futures-channel = "0.3.18"
  19. tokio = { version = "1.12.0", features = [
  20. "sync",
  21. "rt-multi-thread",
  22. "rt",
  23. "time",
  24. ], optional = true, default-features = false }
  25. dioxus-core-macro = { path = "../core-macro" }
  26. dioxus-html = { path = "../html", features = ["serialize"] }
  27. [features]
  28. default = ["tokio_runtime"]
  29. tokio_runtime = ["tokio"]
  30. [dev-dependencies]
  31. dioxus-hooks = { path = "../hooks" }
  32. simple_logger = "1.13.0"