changed hashmap library to tuneup #368 (#369)

* added color code emit_csv test

* replaced HashMap and HashSet to hashbrown #368

* removed debug output in test #368

* fixed colored test
This commit is contained in:
DustInDark
2022-02-09 01:59:39 +09:00
committed by GitHub
parent 84de8d01af
commit df30adfdef
7 changed files with 10 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
use crate::detections::{configs, detection::EvtxRecordInfo, utils};
use std::collections::HashMap;
use hashbrown::HashMap;
#[derive(Debug)]
pub struct EventStatistics {

View File

@@ -1,7 +1,7 @@
use crate::detections::{configs, detection::EvtxRecordInfo};
use super::statistics::EventStatistics;
use std::collections::HashMap;
use hashbrown::HashMap;
#[derive(Debug)]
pub struct Timeline {