ytnef 0.4.0

A Rust binding for libytnef. A C library for parsing the TNEF file format used by Microsoft Outlook and Exchange Server.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate chrono;
extern crate ytnef_sys;
extern crate lazy_static;

pub mod tnef;
pub mod mapi;
mod utils;

pub use self::tnef::*;
pub use self::mapi::*;