From d76dd610de138a77147f581c6f0737b71130f0c9 Mon Sep 17 00:00:00 2001 From: Aaron Weiss Date: Fri, 19 Dec 2014 10:48:59 -0500 Subject: [PATCH] Fixed compilation, and updated README. --- Cargo.toml | 2 +- README.md | 2 +- src/data/response.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4c63002..9515201 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,5 +22,5 @@ optional = true [dependencies.openssl] -openssl = "~0.2.4" +openssl = "~0.2.5" optional = true diff --git a/README.md b/README.md index f1bfa65..ad51f38 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# irc [![Build Status](https://travis-ci.org/aaronweiss74/irc.svg?branch=master)](https://travis-ci.org/aaronweiss74/irc) # +# irc [![Build Status](https://travis-ci.org/aatxe/irc.svg?branch=master)](https://travis-ci.org/aatxe/irc) # A thread-safe IRC library in Rust based on iterators. It's hopefully compliant with [RFC 2812](http://tools.ietf.org/html/rfc2812). You can find up-to-date, ready-to-use documentation online [here](http://aatxe.github.io/irc/irc/). The documentation is generated diff --git a/src/data/response.rs b/src/data/response.rs index 287786c..ca83319 100644 --- a/src/data/response.rs +++ b/src/data/response.rs @@ -332,7 +332,7 @@ mod test { #[test] fn is_error() { - assert!(!Response::RPL_NAMREPLY.is_error()) - assert!(Response::ERR_NICKNAMEINUSE.is_error()) + assert!(!Response::RPL_NAMREPLY.is_error()); + assert!(Response::ERR_NICKNAMEINUSE.is_error()); } }