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>
23 lines
670 B
TOML
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"
|