mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
cd4474cc4f
* work on updating docs to master version * more updates * more polishing * finish interactivity chapter * finish updating core guide * fix grammer mistakes and typos * more grammer fixes * add liveview guide * remove doc build * WIP custom renderer docs * add axum as dev-dependancy to guide * fix examples * fix overview example * use md book fork to fix compilation
23 lines
No EOL
884 B
TOML
23 lines
No EOL
884 B
TOML
[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"] } |