2023-01-11 19:40:02 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-hot-reload"
|
2023-08-01 00:30:18 +00:00
|
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2023-01-11 19:40:02 +00:00
|
|
|
edition = "2021"
|
2023-07-20 17:00:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-01-13 22:57:27 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
2023-09-16 17:03:27 +00:00
|
|
|
homepage = "https://dioxuslabs.com/learn/0.4/migration/hot_reload"
|
2023-07-19 17:19:23 +00:00
|
|
|
description = "Hot reloading utilities for Dioxus"
|
2023-02-22 20:55:54 +00:00
|
|
|
keywords = ["dom", "ui", "gui", "react", "hot-reloading"]
|
2023-01-11 19:40:02 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus-rsx = { workspace = true }
|
|
|
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
2023-10-20 17:59:49 +00:00
|
|
|
dioxus-html = { workspace = true, optional = true }
|
2023-01-11 19:40:02 +00:00
|
|
|
|
2023-07-05 20:44:24 +00:00
|
|
|
interprocess-docfix = { version = "1.2.2" }
|
2023-07-19 17:19:23 +00:00
|
|
|
notify = { version = "5.0.0", optional = true }
|
|
|
|
chrono = { version = "0.4.24", default-features = false, features = ["clock"], optional = true }
|
2023-01-11 19:40:02 +00:00
|
|
|
serde_json = "1.0.91"
|
2023-01-13 22:13:07 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-07-19 17:19:23 +00:00
|
|
|
execute = { version = "0.2.11", optional = true }
|
|
|
|
once_cell = { version = "1.17.0", optional = true }
|
|
|
|
ignore = { version = "0.4.19", optional = true }
|
|
|
|
|
|
|
|
[features]
|
2023-10-20 17:59:49 +00:00
|
|
|
default = ["dioxus-html"]
|
|
|
|
custom_file_watcher = ["ignore", "chrono", "notify", "execute", "once_cell", "ignore"]
|
|
|
|
file_watcher = ["custom_file_watcher", "dioxus-html/hot-reload-context"]
|