tuv 0.1.1

Pure-Rust QR code encoder with SVG and PNG output
Documentation
1
2
3
4
5
6
use tuv::{ECCLevel, QRCode};

fn main() {
    let qr = QRCode::new("https://vondal.dev", Some(ECCLevel::M), None).unwrap();
    print!("{}", qr.debug_matrix());
}