sixel 0.3.2

A safe Rust wrapper for libsixel
Documentation
#![allow(dead_code)]

extern crate sixel_sys as sixel;
extern crate semver_parser;


#[macro_use]
extern crate lazy_static;

pub mod status;
pub mod encoder;
// Should it be pub?
pub mod optflags;
mod msc;
pub mod pixelformat;


#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}