Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 0157ede

Browse files
authored
Merge pull request #35 from DioxusLabs/enhance/weather-app
feat: Enhance Weather app
2 parents 434ff2c + 8cc01c5 commit 0157ede

File tree

4 files changed

+215
-247
lines changed

4 files changed

+215
-247
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ Current Projects:
1717
| [File Explorer](./file-explorer) | Desktop | @jkelleyrtp |
1818
| [E-Commerce](./ecommerce-site) | LiveView | @jkelleyrtp |
1919
| [WiFi Scanner](./wifi-scanner) | Desktop | @jkelleyrtp |
20-
| [Weather App (WIP](./weatherapp) | Web | @jkelleyrtp |
20+
| [Weather App](./weatherapp) | Web | @jkelleyrtp |
2121
| [Dog App](./dog-app) | Desktop | @jkelleyrtp |
2222

23-
2423
## TODOMVC (Desktop, Web)
2524

2625
[![TodoMVC](./todomvc/example.png)](./todomvc)
@@ -39,8 +38,10 @@ Current Projects:
3938
## WiFi Scanner (Desktop)
4039
[![WiFi Scanner](./wifi-scanner/demo_small.png)](./wifi-scanner)
4140

42-
## Weather App (Liveview) [WIP]
43-
[![Weather App](./)](./weatherapp)
41+
## Weather App (Web)
42+
[Instructions](./weatherapp/README.md/#Instructions)
43+
44+
[![Weather App](./weatherapp/weatherapp.png)](./weatherapp)
4445

4546
## Dog App (Desktop)
4647
[Instructions](./dog-app/README.md/#Instructions)

weatherapp/Cargo.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ name = "weatherapp"
33
version = "0.1.0"
44
edition = "2021"
55

6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7-
86
[dependencies]
9-
dioxus = { version = "0.3" }
10-
dioxus-web = { version = "0.3" }
7+
chrono = { version = "0.4.26", features = ["serde"] }
8+
dioxus = "0.3"
9+
dioxus-web = "0.3"
10+
reqwest = { version = "0.11.18", features = ["json"] }
11+
serde = "1.0.171"
12+
serde_json = "1.0.102"

0 commit comments

Comments
 (0)