Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 = "0.11.0"
  21. async-std = { version = "1.9.0", features = ["attributes"] }
  22. [dev-dependencies]
  23. dioxus-html = { path = "../html" }
  24. tide = "0.15.0"
  25. tide-websockets = "0.3.0"
  26. # thiserror = "1.0.23"
  27. # log = "0.4.13"
  28. # fern = { version = "0.6.0", features = ["colored"] }
  29. # wasm-bindgen-cli-support = "0.2.71"
  30. # anyhow = "1.0.38"
  31. # argh = "0.1.4"
  32. # async-std = { version = "1.9.0", features = ["attributes"] }
  33. # serde = "1.0.120"
  34. # serde_json = "1.0.61"
  35. [build-dependencies]