- Add daemon `weatherd` to fetch and cache weather data - Update API libraries to serialize to json - Add "cache_file" parameter to "general" config - Cargo `fmt` and `clippy`
13 lines
340 B
TOML
13 lines
340 B
TOML
[package]
|
|
name = "weatherd"
|
|
version = "0.0.1"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
reqwest = {version = "0.12.23", features = ["blocking", "json"] }
|
|
toml = "0.9.7"
|
|
dirs = "6.0.0"
|
|
serde = { version = "1.0.225", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
owm_api25 = { path = "../owm_api25" }
|
|
owm_widg_config = { path = "../owm_widg_config" } |