Cargo.toml 981 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "dioxus-devtools"
  3. authors = ["Jonathan Kelley", "Evan Almloff"]
  4. version = "0.6.2"
  5. edition = "2021"
  6. license = "MIT OR Apache-2.0"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. homepage = "https://dioxuslabs.com/learn/0.4/migration/hot_reload"
  9. description = "Hot reloading utilities for Dioxus"
  10. keywords = ["dom", "ui", "gui", "react", "hot-reloading"]
  11. [dependencies]
  12. dioxus-signals = { workspace = true }
  13. dioxus-core = { workspace = true, features = ["serialize"] }
  14. dioxus-devtools-types = { workspace = true }
  15. serde = { workspace = true, features = ["derive"] }
  16. serde_json = { workspace = true }
  17. # hot reloading serve
  18. tracing = { workspace = true }
  19. warnings.workspace = true
  20. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  21. tungstenite = { version = "0.23.0" }
  22. [dev-dependencies]
  23. tokio = { workspace = true, features = ["full"] }
  24. serde_json = "1.0.91"
  25. [package.metadata.docs.rs]
  26. cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]