manasight-parser 0.2.0

MTG Arena log file parser — reads Player.log and emits typed game events
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Category-specific parsers — one module per event category.

pub(crate) mod api_common;
pub mod client_actions;
pub mod connection_close;
pub mod connection_error;
pub mod connection_state;
pub mod draft;
pub mod event_lifecycle;
pub mod gre;
pub mod inventory;
pub mod match_state;
pub mod metadata;
pub mod rank;
pub mod session;
#[cfg(test)]
pub(crate) mod test_helpers;