Cargo.toml 980 B

12345678910111213141516171819202122232425262728293031323334
  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. [features]
  26. default = []