diff options
author | Genny <gen@nyble.dev> | 2021-10-11 03:35:38 -0500 |
---|---|---|
committer | Genny <gen@nyble.dev> | 2021-10-11 03:35:38 -0500 |
commit | 9b7bd5696a21496fa0c38a17e69c5c0658acfe73 (patch) | |
tree | b18b5016968892b7c85a9a80f42d320a9b52ab69 /src/lib.rs | |
parent | 4cbbd1e9476722c266eaa746f620da5a01523bc0 (diff) | |
download | gifed-9b7bd5696a21496fa0c38a17e69c5c0658acfe73.tar.gz gifed-9b7bd5696a21496fa0c38a17e69c5c0658acfe73.zip |
Implement images iterator
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs index 97bab10..c7d820d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,5 @@ mod color; +mod colorimage; mod gif; mod lzw; @@ -10,6 +11,7 @@ use core::fmt; use std::error::Error; pub use color::Color; +pub use colorimage::ColorImage; pub use gif::Gif; pub use lzw::LZW; |