diff options
author | Till Hoeppner | 2014-11-07 15:56:58 +0100 |
---|---|---|
committer | Till Hoeppner | 2014-11-07 15:56:58 +0100 |
commit | d738bcd85bc9d7ea47d8995a57a594ead6bb0f73 (patch) | |
tree | 6a5f797eeff751c84eed37dde44d7d9058386528 /src/lib.rs | |
parent | c134482094fe8f84491e96f919283359ea8d5e4b (diff) | |
download | irsc-d738bcd85bc9d7ea47d8995a57a594ead6bb0f73.tar.gz irsc-d738bcd85bc9d7ea47d8995a57a594ead6bb0f73.tar.xz irsc-d738bcd85bc9d7ea47d8995a57a594ead6bb0f73.zip |
Fixed TcpStream::connect invocation
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,9 @@ extern crate regex_macros; extern crate regex; +#[phase(plugin, link)] +extern crate log; + pub mod server; pub mod color; pub mod ident; |