Первый коммит

This commit is contained in:
2025-03-21 07:25:42 +04:00
commit f1d812ddb8
14 changed files with 2986 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
use criterion::{Criterion, criterion_group, criterion_main};
use schedule_parser::parse_xls;
use std::path::Path;
pub fn bench_parse_xls(c: &mut Criterion) {
c.bench_function("parse_xls", |b| {
b.iter(|| parse_xls(Path::new("../../schedule.xls")))
});
}
criterion_group!(benches, bench_parse_xls);
criterion_main!(benches);