rust-irc/src/lib.rs

14 lines
253 B
Rust
Raw Normal View History

//! A simple, thread-safe IRC client library.
#![crate_name = "irc"]
#![crate_type = "lib"]
2014-11-06 21:38:37 -05:00
#![license = "Public Domain"]
2014-11-03 00:52:15 -05:00
#![unstable]
#![feature(if_let)]
#![feature(slicing_syntax)]
extern crate serialize;
pub mod conn;
2014-11-02 17:25:45 -05:00
pub mod data;
pub mod server;