├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── assets ├── Ferris-128x64.gif ├── Ferris-160x80.gif └── Ferris-240x240.gif ├── benches └── decode.rs └── src ├── bitstream.rs ├── lib.rs ├── lzw.rs └── parser.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | /trash 4 | 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/README.md -------------------------------------------------------------------------------- /assets/Ferris-128x64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/assets/Ferris-128x64.gif -------------------------------------------------------------------------------- /assets/Ferris-160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/assets/Ferris-160x80.gif -------------------------------------------------------------------------------- /assets/Ferris-240x240.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/assets/Ferris-240x240.gif -------------------------------------------------------------------------------- /benches/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/benches/decode.rs -------------------------------------------------------------------------------- /src/bitstream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/src/bitstream.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/lzw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/src/lzw.rs -------------------------------------------------------------------------------- /src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andelf/tinygif/HEAD/src/parser.rs --------------------------------------------------------------------------------