This commit is contained in:
Robin Appelman 2023-03-04 17:20:59 +01:00
commit a27d1a8f6b
9 changed files with 25 additions and 22 deletions

View file

@ -1,7 +1,7 @@
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use std::fs::read_to_string;
use std::time::Duration;
use tf_log_parser::{parse, GameEvent, RawEvent, LineSplit};
use tf_log_parser::{parse, GameEvent, LineSplit, RawEvent};
pub fn parse_benchmark(c: &mut Criterion) {
let input = read_to_string("test_data/log_2892242.log").unwrap();

View file

@ -1,5 +1,5 @@
use iai::black_box;
use tf_log_parser::{LineSplit, parse, RawEvent};
use tf_log_parser::{parse, LineSplit, RawEvent};
static LOG: &str = include_str!("../test_data/log_2892242.log");