rust-irc/src/lib.rs

13 lines
312 B
Rust
Raw Normal View History

//! A simple, thread-safe IRC library.
#![crate_name = "irc"]
#![crate_type = "lib"]
#![warn(missing_docs)]
#[cfg(feature = "ctcp")] extern crate time;
#[cfg(feature = "encode")] extern crate encoding;
2015-03-26 21:50:38 -04:00
extern crate rustc_serialize;
#[cfg(feature = "ssl")] extern crate openssl;
pub mod client;
pub mod server;