qrism 0.1.0

A Rust library for generating and reading QR codes with Reed-Solomon error correction. Supports traditional monochromatic QR codes with additional experimental multicolor QR support for enhanced storage capacity.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod bit_types;
pub mod cast;
pub mod error;
pub mod iter;
pub mod macros;

pub use bit_types::*;
pub use cast::*;
pub use error::*;
pub use iter::*;