Cargo.toml 715 B

12345678910111213141516171819202122232425
  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. web-view = "0.7.3"
  12. dioxus-core = { path = "../core", version = "0.1.2" }
  13. anyhow = "1.0.38"
  14. argh = "0.1.4"
  15. serde = "1.0.120"
  16. serde_json = "1.0.61"
  17. async-std = { version = "1.9.0", features = ["attributes"] }
  18. thiserror = "1.0.23"
  19. log = "0.4.13"
  20. fern = { version = "0.6.0", features = ["colored"] }
  21. [build-dependencies]