brcode 1.4.2

Crate to parse and emit BR Codes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use brcode::from_str;
use criterion::{criterion_group, criterion_main, Criterion};

fn criterion_benchmark(c: &mut Criterion) {
    let code = code();
    c.bench_function("parse", |b| b.iter(|| from_str(&code)));
}

criterion_group!(benches, criterion_benchmark);
criterion_main!(benches);

fn code() -> String {
    "00020104141234567890123426580014BR.GOV.BCB.PIX0136123e4567-e12b-12d1-a456-42665544000027300012BR.COM.OUTRO011001234567895204000053039865406123.455802BR5917NOME DO RECEBEDOR6008BRASILIA61087007490062190515RP12345678-201980390012BR.COM.OUTRO01190123.ABCD.3456.WXYZ6304AD38"
    .to_string()
}