xbr/
lib.rs

1// mods
2mod block;
3mod error;
4mod pixel;
5mod xbr;
6
7// features
8#[cfg(feature = "image")]
9pub mod image;
10
11// rexports
12pub use crate::block::Block;
13pub use crate::error::XBRError;
14pub use crate::pixel::*;
15pub use crate::xbr::x2;