A Rust library for encoding and decoding GIF images.
[https://docs.rs/gift](https://docs.rs/gift)
```rust
// ... open a `File` as "gif"
for raster in gift::Decoder::new(gif) {
}
```
The library comes with a `gift` command-line utility, which can show the blocks
within GIF files.
```
cargo install gift --features=cmd
```
*