1//! A simple crate to parse Snapchat chat logs 2//! 3//! # Installation 4//! 5//! Add the following to your `Cargo.toml` file: 6//! 7//! ```toml 8//! [dependencies] 9//! snapchat_log_parser = "0.2" 10//! ``` 11 12pub mod types; 13mod timestamp; 14 15#[cfg(test)] 16mod tests;