Cargo.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. tokio = { version = "1", features = ["full"] }
  12. warp = "0.3"
  13. futures-util = { version = "0.3", default-features = false, features = [
  14. "sink",
  15. ] }
  16. futures-channel = { version = "0.3.17", features = ["sink"] }
  17. pretty_env_logger = "0.4"
  18. tokio-stream = { version = "0.1.1", features = ["net"] }
  19. dioxus-core = { path = "../core", features = ["serialize"] }
  20. dioxus-html = { path = "../html", features = ["serialize"] }
  21. serde = { version = "1.0.136", features = ["derive"] }
  22. serde_json = "1.0.79"
  23. # axum = { version = "0.4.2", optional = true, features = ["ws", "headers"] }
  24. # serde = { version = "1.0.136", features = ["derive"] }
  25. # serde_json = "1.0.79"
  26. [features]
  27. # default = ["axum"]
  28. [dev-dependencies]
  29. # tokio = { version = "1.14.0", features = ["full"] }
  30. # tracing = "0.1"
  31. # tracing-subscriber = { version = "0.3", features = ["env-filter"] }
  32. # tower-http = { version = "0.2.0", features = ["fs", "trace"] }
  33. # headers = "0.3"