diff options
-rw-r--r-- | gifed/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gifed/src/lib.rs b/gifed/src/lib.rs index 96ffb1b..f96b28a 100644 --- a/gifed/src/lib.rs +++ b/gifed/src/lib.rs @@ -4,7 +4,9 @@ pub mod lzw; pub mod block; pub mod reader; #[cfg(feature = "standard")] -pub mod standard; +mod standard; +#[cfg(feature = "standard")] +pub use standard::StandardGif; pub mod writer; pub use reader::DecodeError; |