12345678910111213141516171819202122 |
- [package]
- name = "dioxus-liveview"
- version = "0.1.0"
- edition = "2021"
- repository = "https://github.com/DioxusLabs/dioxus/"
- homepage = "https://dioxuslabs.com"
- documentation = "https://dioxuslabs.com"
- keywords = ["dom", "ui", "gui", "react", "wasm"]
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- axum = { version = "0.4.2", optional = true, features = ["ws", "headers"] }
- [features]
- default = ["axum"]
- [dev-dependencies]
- tokio = { version = "1.14.0", features = ["full"] }
- tracing = "0.1"
- tracing-subscriber = { version = "0.3", features = ["env-filter"] }
- tower-http = { version = "0.2.0", features = ["fs", "trace"] }
- headers = "0.3"
|