dioxus/packages/hot-reload/Cargo.toml

27 lines
887 B
TOML
Raw Normal View History

2023-01-11 13:40:02 -06:00
[package]
name = "dioxus-hot-reload"
2023-02-22 13:06:33 -08:00
version = "0.1.1"
2023-01-11 13:40:02 -06:00
edition = "2021"
2023-01-13 16:57:27 -06:00
license = "MIT/Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
description = "Hot reloading utilites for Dioxus"
documentation = "https://dioxuslabs.com"
2023-02-22 12:55:54 -08:00
keywords = ["dom", "ui", "gui", "react", "hot-reloading"]
2023-01-11 13:40:02 -06:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-06-19 14:29:11 -05:00
dioxus-rsx = { workspace = true }
dioxus-core = { workspace = true, features = ["serialize"] }
dioxus-html = { workspace = true, features = ["hot-reload-context"] }
2023-01-11 13:40:02 -06:00
interprocess-docfix = { version = "1.2.1" }
2023-01-11 13:40:02 -06:00
notify = "5.0.0"
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
2023-01-11 13:40:02 -06:00
serde_json = "1.0.91"
serde = { version = "1", features = ["derive"] }
execute = "0.2.11"
2023-01-13 16:25:03 -06:00
once_cell = "1.17.0"
2023-02-22 12:16:35 -08:00
ignore = "0.4.19"