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

Commit 69350f2

Browse files
committed
feat: Enhance Weather app
1 parent 896306c commit 69350f2

File tree

4 files changed

+215
-246
lines changed

4 files changed

+215
-246
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ 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 Search Engine](./dog-app) | Web/Desktop | @jkelleyrtp |
2222

2323

@@ -39,8 +39,10 @@ Current Projects:
3939
## WiFi Scanner (Desktop)
4040
[![WiFi Scanner](./wifi-scanner/demo_small.png)](./wifi-scanner)
4141

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

4547
## Dog Search Engine (Web) [WIP]
4648
[![Dog Search Engine](./)](./dog-app)

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)