rxing 0.8.5

A rust port of the zxing barcode library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod decoder;
pub mod detector;
pub mod encoder;

mod qr_code_reader;
pub use qr_code_reader::*;

mod qr_code_writer;
pub use qr_code_writer::*;

pub mod cpp_port;

#[cfg(test)]
#[cfg(feature = "image")]
mod QRCodeWriterTestCase;