qr2term 0.1.2

Stupidly simple Rust crate to render a QR code in the terminal.
Documentation
1
2
3
4
5
6
7
extern crate qr2term;

use qr2term::print_qr;

fn main() {
    print_qr("https://rust-lang.org/").unwrap();
}