Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. dioxus-liveview = { path = "./", features = ["warp"] }
  30. warp = "0.3"
  31. axum = { version = "0.5.1", features = ["ws"] }
  32. tower = "0.4.12"
  33. [features]
  34. default = []