[package] name = "dioxus-guide" version = "0.0.1" edition = "2021" description = "Dioxus guide, including testable examples" license = "MIT/Apache-2.0" [dev-dependencies] dioxus = { path = "../../packages/dioxus" } dioxus-desktop = { path = "../../packages/desktop" } dioxus-web = { path = "../../packages/web" } dioxus-ssr = { path = "../../packages/ssr" } dioxus-router = { path = "../../packages/router" } dioxus-liveview = { path = "../../packages/liveview", features = ["axum"] } dioxus-tui = { path = "../../packages/tui" } fermi = { path = "../../packages/fermi" } # dioxus = { path = "../../packages/dioxus", features = ["desktop", "web", "ssr", "router", "fermi", "tui"] } serde = { version = "1.0.138", features=["derive"] } reqwest = { version = "0.11.11", features = ["json"] } tokio = { version = "1.19.2" , features=[]} axum = { version = "0.6.1", features = ["ws"] }