12345678910111213141516171819202122232425262728293031323334 |
- [package]
- name = "dioxus-devtools"
- 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-signals = { workspace = true }
- dioxus-core = { workspace = true, features = ["serialize"] }
- dioxus-devtools-types = { workspace = true }
- dioxus-cli-config = { workspace = true }
- serde = { workspace = true, features = ["derive"] }
- serde_json = { workspace = true }
- subsecond = { workspace = true }
- thiserror = { workspace = true }
- # hot reloading serve
- tracing = { workspace = true }
- warnings = { workspace = true }
- [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
- tungstenite = { workspace = true }
- [dev-dependencies]
- tokio = { workspace = true, features = ["full"] }
- serde_json = { workspace = true }
- [package.metadata.docs.rs]
- cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|