aboutsummaryrefslogtreecommitdiff
path: root/vendor/image/src/codecs/ico/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/image/src/codecs/ico/mod.rs')
-rw-r--r--vendor/image/src/codecs/ico/mod.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/vendor/image/src/codecs/ico/mod.rs b/vendor/image/src/codecs/ico/mod.rs
deleted file mode 100644
index 11493ac..0000000
--- a/vendor/image/src/codecs/ico/mod.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-//! Decoding and Encoding of ICO files
-//!
-//! A decoder and encoder for ICO (Windows Icon) image container files.
-//!
-//! # Related Links
-//! * <https://msdn.microsoft.com/en-us/library/ms997538.aspx>
-//! * <https://en.wikipedia.org/wiki/ICO_%28file_format%29>
-
-pub use self::decoder::IcoDecoder;
-#[allow(deprecated)]
-pub use self::encoder::{IcoEncoder, IcoFrame};
-
-mod decoder;
-mod encoder;