[package] name = "dioxus-hot-reload" authors = ["Jonathan Kelley", "Evan Almloff"] version = { workspace = true } edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/DioxusLabs/dioxus/" homepage = "https://dioxuslabs.com/learn/0.4/migration/hot_reload" description = "Hot reloading utilities for Dioxus" keywords = ["dom", "ui", "gui", "react", "hot-reloading"] [dependencies] dioxus-rsx = { workspace = true } dioxus-core = { workspace = true, features = ["serialize"] } dioxus-html = { workspace = true, optional = true } interprocess-docfix = { version = "1.2.2" } notify = { version = "5.0.0", optional = true } chrono = { version = "0.4.24", default-features = false, features = ["clock"], optional = true } serde_json = "1.0.91" serde = { version = "1", features = ["derive"] } execute = { version = "0.2.11", optional = true } once_cell = { version = "1.17.0", optional = true } ignore = { version = "0.4.19", optional = true } [features] default = ["dioxus-html"] custom_file_watcher = ["ignore", "chrono", "notify", "execute", "once_cell", "ignore"] file_watcher = ["custom_file_watcher", "dioxus-html/hot-reload-context"]