A simple Rust library that parses IRC protocol messages and turns them into the following struct: ```Rust
pub struct Message { pub server: Option, pub nick: Option, pub user: Option, pub host: Option, pub command: String, pub params: Vec, } ```
Licensed under the MIT license. See the license file for details.