mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
129d0a68ff
* feat: Optional web support for hot-reload crate * rename feature * tweak * tweak
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[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"]
|