Files
dwd_cloud_cover_rs/Cargo.toml
Schuwi 764f4f6378 Add animated GIF output with parallelised frame quantization
Render an animated clct_animation.gif alongside the per-step PNGs.
Frames are loaded and colour-quantized in parallel via rayon, then
written sequentially with the gif crate.  Also converts timestamps
to CET/CEST using chrono-tz.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-06 22:53:49 +01:00

23 lines
670 B
TOML

[package]
name = "cloud_cover"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "cloud_cover"
path = "src/main.rs"
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
bzip2 = "0.4"
plotters = { version = "0.3", default-features = false, features = ["bitmap_backend", "bitmap_encoder"] }
font8x8 = "0.2"
clap = { version = "4", features = ["derive"] }
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
anyhow = "1"
spade = "2"
rayon = "1"
image = { version = "0.25", default-features = false, features = ["png"] }
gif = "0.14"
chrono-tz = "0.10.4"