s2protocol 3.5.3

A parser for Starcraft II - Replay format, exports to different target formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Experimenting with Arrow integration
//! The rows can then be stored in .ipc file and loaded from polars without joins or needing to
//! unnest complex structs

pub mod player_stats_flat_row;
pub mod unit_born_event_flat_row;
pub mod unit_died_event_flat_row;
pub mod upgrade_event_flat_row;

pub use player_stats_flat_row::PlayerStatsFlatRow;
pub use unit_born_event_flat_row::UnitBornEventFlatRow;
pub use unit_died_event_flat_row::UnitDiedEventFlatRow;
pub use upgrade_event_flat_row::UpgradeEventFlatRow;