Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "dioxus-hot-reload"
  3. version = "0.1.1"
  4. edition = "2021"
  5. license = "MIT OR 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 utilities 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 }
  14. interprocess-docfix = { version = "1.2.2" }
  15. notify = { version = "5.0.0", optional = true }
  16. chrono = { version = "0.4.24", default-features = false, features = ["clock"], optional = true }
  17. serde_json = "1.0.91"
  18. serde = { version = "1", features = ["derive"] }
  19. execute = { version = "0.2.11", optional = true }
  20. once_cell = { version = "1.17.0", optional = true }
  21. ignore = { version = "0.4.19", optional = true }
  22. [features]
  23. default = []
  24. file_watcher = ["ignore", "chrono", "notify", "execute", "once_cell", "ignore", "dioxus-html/hot-reload-context"]