mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
d9546d9504
* feat: use synchronous router design * feat: function to get router out of dom * chore: restructure workspace to use renderers as packages, not features
21 lines
761 B
TOML
21 lines
761 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-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=[]}
|