123456789101112131415161718192021222324 |
- [package]
- name = "fullstack-streaming-example"
- version = "0.1.0"
- edition = "2021"
- publish = false
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- dioxus = { workspace = true, features = ["fullstack"] }
- serde = "1.0.159"
- simple_logger = "4.2.0"
- tracing-wasm = "0.2.1"
- tracing.workspace = true
- tracing-subscriber = "0.3.17"
- futures = "0.3.30"
- tokio = { workspace = true, optional = true }
- futures-util.workspace = true
- once_cell = "1.19.0"
- [features]
- default = []
- server = ["dioxus/axum", "tokio"]
- web = ["dioxus/web"]
|