//! Decoding and Encoding of ICO files //! //! A decoder and encoder for ICO (Windows Icon) image container files. //! //! # Related Links //! * //! * pub use self::decoder::IcoDecoder; pub use self::encoder::ICOEncoder; mod decoder; mod encoder;