Cargo.toml 595 B

12345678910111213141516171819202122
  1. [package]
  2. name = "dioxus-webview"
  3. version = "0.0.0"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. # web-view = { git = "https://github.com/Boscop/web-view" }
  9. web-view = "0.7.3"
  10. dioxus-core = { path = "../core" }
  11. anyhow = "1.0.38"
  12. argh = "0.1.4"
  13. serde = "1.0.120"
  14. serde_json = "1.0.61"
  15. async-std = { version = "1.9.0", features = ["attributes"] }
  16. thiserror = "1.0.23"
  17. log = "0.4.13"
  18. fern = { version = "0.6.0", features = ["colored"] }
  19. [build-dependencies]