1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Re-exports of the most common traits and types.
pub use super::*;

pub use self::{
    color::{palette::Palette, RGB},
    ditherer::{Dither, Ditherer},
    error::{Error, IOError, Result},
    img::Img,
    opts::Opt,
};