libsixel_rs/
lib.rs

1//! Sixel image encoding/decoding.
2
3#![cfg_attr(not(feature = "std"), no_std)]
4
5#[macro_use(format, vec)]
6extern crate alloc;
7
8#[cfg(not(feature = "std"))]
9use core as std;
10#[cfg(feature = "std")]
11use std;
12
13pub mod color;
14pub mod config;
15pub(crate) mod constants;
16pub mod device_control_string;
17pub mod dimension;
18pub mod dither;
19mod error;
20pub mod palette;
21pub mod pixel_format;
22pub mod quant;
23
24pub use constants::*;
25pub use device_control_string::*;
26pub use error::*;