1//! Decoding and Encoding of ICO files
2//!
3//! A decoder and encoder for ICO (Windows Icon) image container files.
4//!
5//! # Related Links
6//! * <https://msdn.microsoft.com/en-us/library/ms997538.aspx>
7//! * <https://en.wikipedia.org/wiki/ICO_%28file_format%29>
8
9pub use self::decoder::IcoDecoder;
10#[allow(deprecated)]
11pub use self::encoder::{IcoEncoder, IcoFrame};
12
13mod decoder;
14mod encoder;
15