evtx 0.12.2

A Fast (and safe) parser for the Windows XML Event Log (EVTX) format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub(crate) mod byte_cursor;
pub(crate) mod bytes;
mod parse_error;
pub(crate) mod utf16;
pub(crate) mod windows;

pub(crate) use self::byte_cursor::ByteCursor;
pub(crate) use self::parse_error::invalid_data;
pub(crate) use self::utf16::{Utf16LeSlice, decode_utf16le_bytes_to_bump_str};

#[cfg(feature = "wevt_templates")]
pub(crate) use self::utf16::decode_utf16le_bytes_z;