Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "dioxus-hot-reload"
  3. authors = ["Jonathan Kelley", "Evan Almloff"]
  4. version = { workspace = true }
  5. edition = "2021"
  6. license = "MIT OR Apache-2.0"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. homepage = "https://dioxuslabs.com/learn/0.4/migration/hot_reload"
  9. description = "Hot reloading utilities for Dioxus"
  10. keywords = ["dom", "ui", "gui", "react", "hot-reloading"]
  11. [dependencies]
  12. dioxus-rsx = { workspace = true }
  13. dioxus-core = { workspace = true, features = ["serialize"] }
  14. dioxus-html = { workspace = true }
  15. interprocess-docfix = { version = "1.2.2" }
  16. notify = { version = "5.0.0", optional = true }
  17. chrono = { version = "0.4.24", default-features = false, features = ["clock"], optional = true }
  18. serde_json = "1.0.91"
  19. serde = { version = "1", features = ["derive"] }
  20. execute = { version = "0.2.11", optional = true }
  21. once_cell = { version = "1.17.0", optional = true }
  22. ignore = { version = "0.4.19", optional = true }
  23. [features]
  24. default = []
  25. file_watcher = ["ignore", "chrono", "notify", "execute", "once_cell", "ignore", "dioxus-html/hot-reload-context"]