bardecoder 0.4.0

Detect and decode QR Codes
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Various utilities to aid in decoding barcodes

#[allow(clippy::unreadable_literal)]
mod chomp;

mod point;

pub mod qr;

pub use self::chomp::Chomp;
pub use self::point::{Delta, Point};