Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. futures-util = { version = "0.3", default-features = false, features = [
  13. "sink",
  14. ] }
  15. futures-channel = { version = "0.3.17", features = ["sink"] }
  16. pretty_env_logger = "0.4"
  17. tokio-stream = { version = "0.1.1", features = ["net"] }
  18. serde = { version = "1.0.136", features = ["derive"] }
  19. serde_json = "1.0.79"
  20. tokio-util = { version = "0.7.0", features = ["full"] }
  21. dioxus-html = { path = "../html", features = ["serialize"] }
  22. dioxus-core = { path = "../core", features = ["serialize"] }
  23. # warp
  24. warp = { version = "0.3", optional = true }
  25. # axum
  26. axum = { version = "0.5.1", optional = true, features = ["ws"] }
  27. tower = { version = "0.4.12", optional = true }
  28. [dev-dependencies]
  29. tokio = { version = "1", features = ["full"] }
  30. dioxus = { path = "../../" }
  31. warp = "0.3"
  32. axum = { version = "0.5.1", features = ["ws"] }
  33. tower = "0.4.12"
  34. [features]
  35. default = []