irc-async 0.1.0

async irc library
Documentation
// i yoinked this from github.com/aatxe/irc

//! Support for the IRC protocol using Tokio.

pub mod caps;
pub mod chan;
pub mod colors;
pub mod command;
mod errors;
pub mod irc;
pub mod message;
pub mod mode;
pub mod response;

pub use self::caps::{Capability, NegotiationVersion};
pub use self::chan::ChannelExt;
pub use self::colors::FormattedStringExt;
pub use self::command::{BatchSubCommand, CapSubCommand, Command};
pub use self::irc::IrcCodec;
pub use self::message::Message;
pub use self::mode::{ChannelMode, Mode, UserMode};
pub use self::response::Response;
pub use errors::*;