Cargo.toml 877 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "dioxus-hot-reload"
  3. version = "0.1.1"
  4. edition = "2021"
  5. license = "MIT/Apache-2.0"
  6. repository = "https://github.com/DioxusLabs/dioxus/"
  7. homepage = "https://dioxuslabs.com"
  8. description = "Hot reloading utilites for Dioxus"
  9. documentation = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react", "hot-reloading"]
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [dependencies]
  13. dioxus-rsx = { path = "../rsx" , version = "^0.0.3" }
  14. dioxus-core = { path = "../core", features = ["serialize"], version = "^0.3.2"}
  15. dioxus-html = { path = "../html", features = ["hot-reload-context"], version = "^0.3.0" }
  16. interprocess = { version = "1.2.1" }
  17. notify = "5.0.0"
  18. chrono = "0.4.23"
  19. serde_json = "1.0.91"
  20. serde = { version = "1", features = ["derive"] }
  21. execute = "0.2.11"
  22. once_cell = "1.17.0"
  23. ignore = "0.4.19"