statical 0.2.0

A calendar aggregator and generator to make maintaining calendars on static websites easier.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// https://bheisler.github.io/criterion.rs/book/getting_started.html

use criterion::{black_box, criterion_group, criterion_main, Criterion};
use statical::*;

pub fn criterion_benchmark(c: &mut Criterion) {
    // c.bench_function("hello", |b| b.iter(|| black_box(hello())));
}

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