about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgennyble <gen@nyble.dev>2025-02-16 02:44:07 -0600
committergennyble <gen@nyble.dev>2025-02-16 02:44:07 -0600
commit772c717d00b28a64bd29f7440a90972b82d538a7 (patch)
tree843c8f186f6b4ea7298513a81cb38e01e07fdcde
parented19effb9afa08ac92d512b48cc7f74e3ed86bb1 (diff)
downloadgifed-772c717d00b28a64bd29f7440a90972b82d538a7.tar.gz
gifed-772c717d00b28a64bd29f7440a90972b82d538a7.zip
pub use StandardGif HEAD main
-rw-r--r--gifed/src/lib.rs4
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;