#![doc(html_root_url = "https://docs.rs/bc-mur/0.1.0")]
#![warn(rust_2018_idioms)]
mod animate;
mod color;
mod correction;
mod error;
mod logo;
mod prores;
mod qr_matrix;
mod render;
pub use animate::{
AnimateParams, QrFrame, encode_animated_gif, generate_frames,
write_frame_pngs,
};
pub use color::Color;
pub use correction::CorrectionLevel;
pub use error::{Error, Result};
pub use logo::{Logo, LogoClearShape};
pub use prores::encode_prores;
pub use qr_matrix::{DEFAULT_MAX_MODULES, check_qr_density, qr_module_count};
pub use render::{RenderedImage, render_qr, render_ur_qr};