//! Decoding and Encoding of ICO files //! //! A decoder and encoder for ICO (Windows Icon) image container files. //! //! # Related Links //! * //! * pub use self::decoder::IcoDecoder; #[allow(deprecated)] pub use self::encoder::{IcoEncoder, IcoFrame}; mod decoder; mod encoder;