Add forecast support
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2025-07-29 14:29:03 -06:00
parent f719983c62
commit 2c2246ae00
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
4 changed files with 90 additions and 41 deletions

View file

@ -37,13 +37,17 @@ wasm-bindgen-test = "0.3.34"
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"
panic = "abort"
[profile.dev]
panic = "abort"
[dependencies]
dotenvy_macro = "0.15.7"
futures-util = "0.3.31"
getrandom = { version = "0.3.3", features = ["wasm_js"] }
heapless = "0.8.0"
openweathermap_lib = { git = "https://github.com/StratusFearMe21/rusty-openweathermap-library", branch = "wasm_deps" }
openweathermap_lib = { git = "https://github.com/StratusFearMe21/rusty-openweathermap-library", branch = "forecast" }
phf = { version = "0.12.1", features = ["macros"] }
rand = { version = "0.9.2", default-features = false, features = ["os_rng", "std"] }
tachyonfx = { version = "0.16.0", default-features = false, features = ["web-time"] }