mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
examples: simplfy running them by enabling features automatically
This commit is contained in:
parent
cdc2d8ec6d
commit
53ef41aa3d
2 changed files with 3 additions and 2 deletions
|
@ -66,3 +66,4 @@ serde_json = "1.0.73"
|
||||||
rand = { version = "0.8.4", features = ["small_rng"] }
|
rand = { version = "0.8.4", features = ["small_rng"] }
|
||||||
tokio = { version = "1.14.0", features = ["full"] }
|
tokio = { version = "1.14.0", features = ["full"] }
|
||||||
reqwest = { version = "0.11.8", features = ["json"] }
|
reqwest = { version = "0.11.8", features = ["json"] }
|
||||||
|
dioxus = { path = ".", features = ["desktop", "ssr", "router"] }
|
||||||
|
|
|
@ -81,10 +81,10 @@ If you know React, then you already know Dioxus.
|
||||||
|
|
||||||
### Examples
|
### Examples
|
||||||
|
|
||||||
All examples in this repo are desktop apps. To run an example, simply clone this repo and use cargo with the `desktop` feature enabled. For SSR examples, you might need to enable SSR instead.
|
All examples in this repo are desktop apps. To run an example, simply clone this repo and use `cargo run --example XYZ`
|
||||||
|
|
||||||
```
|
```
|
||||||
cargo run --features desktop --example EXAMPLE
|
cargo run --example EXAMPLE
|
||||||
```
|
```
|
||||||
|
|
||||||
## Get Started with...
|
## Get Started with...
|
||||||
|
|
Loading…
Reference in a new issue