Cargo.toml 704 B

12345678910111213141516171819202122
  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 = ["dom", "ui", "gui", "react", "wasm"]
  9. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  10. [dependencies]
  11. axum = { version = "0.4.2", optional = true, features = ["ws", "headers"] }
  12. [features]
  13. default = ["axum"]
  14. [dev-dependencies]
  15. tokio = { version = "1.14.0", features = ["full"] }
  16. tracing = "0.1"
  17. tracing-subscriber = { version = "0.3", features = ["env-filter"] }
  18. tower-http = { version = "0.2.0", features = ["fs", "trace"] }
  19. headers = "0.3"