git-stratum 0.3.6

High(er) level repository for mining git repositories, this library abstracts git2-rs for efficient processing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::str::FromStr;

use criterion::{Criterion, criterion_group, criterion_main};

use stratum::Actor;

fn bench_from_str(c: &mut Criterion) {
    c.bench_function("ACTOR FROM STR", |b| {
        b.iter(|| Actor::from_str("name <email>"))
    });
}

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