Cargo.toml 796 B

12345678910111213141516171819202122
  1. [package]
  2. name = "dioxus-hooks"
  3. version = "0.1.7"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "Dioxus VirtualDOM renderer for a remote webview instance"
  7. license = "MIT/Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react", "wasm"]
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. dioxus-core = { path = "../../packages/core", version = "^0.1.9" }
  15. futures-channel = "0.3.21"
  16. log = { version = "0.4", features = ["release_max_level_off"] }
  17. [dev-dependencies]
  18. futures-util = { version = "0.3", default-features = false }
  19. dioxus-core = { path = "../../packages/core", version = "^0.1.9" }