Crates.io | ircmsgprs |
lib.rs | ircmsgprs |
version | 0.2.1 |
source | src |
created_at | 2020-02-07 02:49:29.296721 |
updated_at | 2020-02-13 10:46:52.210405 |
description | A simple library for parsing IRC protocol messages. |
homepage | https://github.com/diath/ircmsgprs |
repository | https://github.com/diath/ircmsgprs |
max_upload_size | |
id | 205662 |
size | 9,797 |
A simple Rust library that parses IRC protocol messages and turns them into the following struct:
#[derive(Default, Debug)]
pub struct Message {
pub server: Option<String>,
pub nick: Option<String>,
pub user: Option<String>,
pub host: Option<String>,
pub command: String,
pub params: Vec<String>,
}
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.