- Fetch weather data from the url using the api key, city id, and units config
13 lines
255 B
TOML
13 lines
255 B
TOML
[package]
|
|
name = "openweatherwidget"
|
|
version = "0.0.1"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
toml = "0.9.6"
|
|
dirs = "6.0.0"
|
|
serde = { version = "1.0.225", features = ["derive"] }
|
|
reqwest = {version = "0.12.23", features = ["blocking"] }
|
|
serde_json = "1.0.145"
|
|
|