Cargo.toml 802 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "dioxus-liveview"
  3. version = "0.1.0"
  4. edition = "2021"
  5. repository = "https://github.com/DioxusLabs/dioxus/"
  6. homepage = "https://dioxuslabs.com"
  7. documentation = "https://dioxuslabs.com"
  8. keywords = [
  9. "dom",
  10. "ui",
  11. "user interface",
  12. "gui",
  13. "react",
  14. "state",
  15. "management",
  16. "wasm",
  17. "web",
  18. "ssr",
  19. ]
  20. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  21. [dependencies]
  22. axum = { version = "0.4.2", optional = true, features = ["ws", "headers"] }
  23. [features]
  24. default = ["axum"]
  25. [dev-dependencies]
  26. tokio = { version = "1.14.0", features = ["full"] }
  27. tracing = "0.1"
  28. tracing-subscriber = { version = "0.3", features = ["env-filter"] }
  29. tower-http = { version = "0.2.0", features = ["fs", "trace"] }
  30. headers = "0.3"