Cargo.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. # web-view = { git = "https://github.com/Boscop/web-view" }
  11. dioxus-core = { path = "../core", version = "0.1.2", features = ["serialize"] }
  12. anyhow = "1.0"
  13. argh = "0.1.4"
  14. serde = "1.0.120"
  15. serde_json = "1.0.61"
  16. thiserror = "1.0.23"
  17. log = "0.4.13"
  18. fern = { version = "0.6.0", features = ["colored"] }
  19. html-escape = "0.2.9"
  20. # wry = { version = "0.12.2", git = "https://github.com/jkelleyrtp/wry.git", branch = "jk/fnmut_rpc" }
  21. wry = "0.12.2"
  22. tokio = { version = "1.12.0", features = ["full"] }
  23. futures-channel = "0.3.16"
  24. [dev-dependencies]
  25. dioxus-html = { path = "../html" }
  26. dioxus-core-macro = { path = "../core-macro" }
  27. dioxus-hooks = { path = "../hooks" }
  28. # thiserror = "1.0.23"
  29. # log = "0.4.13"
  30. # fern = { version = "0.6.0", features = ["colored"] }
  31. # wasm-bindgen-cli-support = "0.2.71"
  32. # anyhow = "1.0.38"
  33. # argh = "0.1.4"
  34. # async-std = { version = "1.9.0", features = ["attributes"] }
  35. # serde = "1.0.120"
  36. # serde_json = "1.0.61"
  37. [build-dependencies]