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