A simple Rust library that parses IRC protocol messages and turns them into the following struct: ```Rust
pub struct Message {
pub server: Option
Rust
let mut parser = parser::Parser::new();
let result = parser
.parse(":nick!user@host COMMAND param1 param2 :trailing param with spaces")
.unwrap();
println!("{}", result);
Licensed under the MIT license. See the license file for details.