2023-01-11 19:40:02 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-hot-reload"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
dioxus-rsx = { path = "../rsx" }
|
|
|
|
dioxus-core = { path = "../core", features = ["serialize"] }
|
|
|
|
dioxus-html = { path = "../html", features = ["hot-reload-context"] }
|
|
|
|
|
|
|
|
interprocess = { version = "1.2.1" }
|
|
|
|
notify = "5.0.0"
|
|
|
|
chrono = "0.4.23"
|
|
|
|
serde_json = "1.0.91"
|
2023-01-13 22:13:07 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
execute = "0.2.11"
|
|
|
|
once_cell = "1.17.0"
|