Cargo.toml 963 B

123456789101112131415161718192021222324252627282930313233343536
  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.2", 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.16"
  19. tokio = { version = "1.12.0", features = [
  20. "sync",
  21. "rt-multi-thread",
  22. "rt",
  23. ], optional = true, default-features = false }
  24. dioxus-core-macro = { path = "../core-macro" }
  25. dioxus-html = { path = "../html", features = ["serialize"] }
  26. [features]
  27. default = ["tokio_runtime"]
  28. tokio_runtime = ["tokio"]
  29. [dev-dependencies]
  30. dioxus-hooks = { path = "../hooks" }
  31. simple_logger = "1.13.0"