Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "dioxus-webview"
  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. async-std = { version="1.9.0", features=["attributes"] }
  17. thiserror = "1.0.23"
  18. log = "0.4.13"
  19. fern = { version="0.6.0", features=["colored"] }
  20. tide = "0.15.0"
  21. tide-websockets = "0.3.0"
  22. html-escape = "0.2.9"
  23. # thiserror = "1.0.23"
  24. # log = "0.4.13"
  25. # fern = { version = "0.6.0", features = ["colored"] }
  26. # wasm-bindgen-cli-support = "0.2.71"
  27. # anyhow = "1.0.38"
  28. # argh = "0.1.4"
  29. # serde = "1.0.120"
  30. # serde_json = "1.0.61"
  31. # async-std = { version = "1.9.0", features = ["attributes"] }
  32. wry = "0.10.3"
  33. [build-dependencies]