Browse Source

Merge pull request #89 from DioxusLabs/jk/simplify-example-run

examples: simplfy running them by enabling features automatically
Jonathan Kelley 3 years ago
parent
commit
8b6aa8b880
2 changed files with 3 additions and 2 deletions
  1. 1 0
      Cargo.toml
  2. 2 2
      README.md

+ 1 - 0
Cargo.toml

@@ -66,3 +66,4 @@ serde_json = "1.0.73"
 rand = { version = "0.8.4", features = ["small_rng"] }
 tokio = { version = "1.14.0", features = ["full"] }
 reqwest = { version = "0.11.8", features = ["json"] }
+dioxus = { path = ".", features = ["desktop", "ssr", "router"] }

+ 2 - 2
README.md

@@ -81,10 +81,10 @@ If you know React, then you already know Dioxus.
 
 ### 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...