Cargo.toml 798 B

1234567891011121314151617181920212223
  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/docs/0.3/guide/en/getting_started/hot_reload.html"
  8. description = "Hot reloading utilites for Dioxus"
  9. keywords = ["dom", "ui", "gui", "react", "hot-reloading"]
  10. [dependencies]
  11. dioxus-rsx = { workspace = true }
  12. dioxus-core = { workspace = true, features = ["serialize"] }
  13. dioxus-html = { workspace = true, features = ["hot-reload-context"] }
  14. interprocess-docfix = { version = "1.2.2" }
  15. notify = "5.0.0"
  16. chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
  17. serde_json = "1.0.91"
  18. serde = { version = "1", features = ["derive"] }
  19. execute = "0.2.11"
  20. once_cell = "1.17.0"
  21. ignore = "0.4.19"