Cargo.toml 1.1 KB

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