dioxus/packages/hot-reload/Cargo.toml

27 lines
877 B
TOML
Raw Normal View History

2023-01-11 19:40:02 +00:00
[package]
name = "dioxus-hot-reload"
2023-02-22 21:06:33 +00:00
version = "0.1.1"
2023-01-11 19:40:02 +00:00
edition = "2021"
2023-01-13 22:57:27 +00: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 20:55:54 +00:00
keywords = ["dom", "ui", "gui", "react", "hot-reloading"]
2023-01-11 19:40:02 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-02-22 20:22:45 +00:00
dioxus-rsx = { path = "../rsx" , version = "^0.0.3" }
2023-02-22 20:55:54 +00:00
dioxus-core = { path = "../core", features = ["serialize"], version = "^0.3.2"}
dioxus-html = { path = "../html", features = ["hot-reload-context"], version = "^0.3.0" }
2023-01-11 19:40:02 +00:00
interprocess = { version = "1.2.1" }
notify = "5.0.0"
chrono = "0.4.23"
serde_json = "1.0.91"
serde = { version = "1", features = ["derive"] }
execute = "0.2.11"
2023-01-13 22:25:03 +00:00
once_cell = "1.17.0"
2023-02-22 20:16:35 +00:00
ignore = "0.4.19"