qr2term 0.3.2

Stupidly simple Rust crate to render a QR code in the terminal.
Documentation
1
2
3
4
fn main() {
    let line = std::io::stdin().lines().next().unwrap().unwrap();
    qr2term::print_qr(line).unwrap();
}