zxing_rust 0.1.1

zxing_rust is an open-source, multi-format 1D/2D barcode image processing library implemented in Rust, with ports to other languages.
Documentation
1
2
3
4
5
6
7
mod lib;

fn main() {
    println!("Hello, world!");
    let msg = lib::decode("test.png".to_string());
    println!("msg: {}", msg);
}