irc-rust 0.1.4

IRC Helper easing the access and creation of IRC Messages
Documentation

irc-rust https://docs.rs/irc-rust/badge.svg crates.io

IRC Helper easing the access and creation of IRC Messages.

Basic Usage

use irc_rust::message::Message;

let message = Message::from("@key1=value1;key2=value2 :name!user@host CMD param1 param2 :trailing");

assert_eq!(message.to_string(), "@key1=value1;key2=value2 :name!user@host CMD param1 param2 :trailing");