irc 0.15.0

the irc crate – usable, async IRC for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Data related to IRC functionality.

pub use crate::client::data::config::Config;
#[cfg(feature = "proxy")]
pub use crate::client::data::proxy::ProxyType;
pub use crate::client::data::user::{AccessLevel, User};

pub mod config;
#[cfg(feature = "proxy")]
pub mod proxy;
pub mod user;