Cargo.toml 590 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "fullstack-streaming-example"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. dioxus = { workspace = true, features = ["fullstack"] }
  9. serde = "1.0.159"
  10. simple_logger = "4.2.0"
  11. tracing-wasm = "0.2.1"
  12. tracing.workspace = true
  13. tracing-subscriber = "0.3.17"
  14. futures = "0.3.30"
  15. tokio = { workspace = true, optional = true }
  16. futures-util.workspace = true
  17. once_cell = "1.19.0"
  18. [features]
  19. default = []
  20. server = ["dioxus/server", "dep:tokio"]
  21. web = ["dioxus/web"]