snapchat-log-parser 0.4.0

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

pub mod types;
mod timestamp;

#[cfg(test)]
mod tests;