mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
22 lines
704 B
TOML
22 lines
704 B
TOML
[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"
|