2014-11-02 16:25:57 -05:00
|
|
|
//! 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]
|
2014-11-02 16:25:57 -05:00
|
|
|
|
2014-10-27 00:33:17 -04:00
|
|
|
#![feature(if_let)]
|
|
|
|
#![feature(slicing_syntax)]
|
2014-09-23 20:11:13 -04:00
|
|
|
extern crate serialize;
|
2014-09-10 19:47:12 -04:00
|
|
|
|
2014-11-03 14:12:23 -05:00
|
|
|
pub mod conn;
|
2014-11-02 17:25:45 -05:00
|
|
|
pub mod data;
|
2014-11-02 16:25:57 -05:00
|
|
|
pub mod server;
|