irc 0.13.5

A simple, thread-safe, and async-friendly library for IRC clients.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Support for the IRC protocol using Tokio.

pub mod caps;
pub mod chan;
pub mod command;
pub mod irc;
pub mod line;
pub mod message;
pub mod mode;
pub mod response;

pub use self::caps::{Capability, NegotiationVersion};
pub use self::chan::ChannelExt;
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;