wows_replays 0.10.0

A parser for World of Warships replay files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod analyzer;
mod error;
mod nested_property_path;
pub mod packet2;
mod wowsreplay;

pub use error::*;
pub use strum;
pub use wowsreplay::*;

#[cfg(feature = "arc")]
pub type Rc<T> = std::sync::Arc<T>;

#[cfg(not(feature = "arc"))]
pub type Rc<T> = std::rc::Rc<T>;