about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDevon Sawatsky <novedevo@gmail.com>2023-12-31 16:11:35 -0800
committerDevon Sawatsky <novedevo@gmail.com>2023-12-31 16:11:35 -0800
commit85f008479a1994486acd96b27fb5502839e6e893 (patch)
tree0b39229e48a6c67a46cfa4eadcd6f915a91cec49
parent234eeebb8b51c32e6b7ba5aa19a64bee00ba52e8 (diff)
downloadgifed-85f008479a1994486acd96b27fb5502839e6e893.tar.gz
gifed-85f008479a1994486acd96b27fb5502839e6e893.zip
require colorsquash and rgb features for the builder API
-rw-r--r--gifed/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/gifed/src/lib.rs b/gifed/src/lib.rs
index 9e4458f..508ef5c 100644
--- a/gifed/src/lib.rs
+++ b/gifed/src/lib.rs
@@ -2,6 +2,7 @@ mod gif;
 mod lzw;
 
 pub mod block;
+#[cfg(all(feature = "colorsquash", feature = "rgb"))]
 pub mod gif_builder;
 pub mod reader;
 pub mod writer;