Fixed compilation, and updated README.

This commit is contained in:
Aaron Weiss 2014-12-19 10:48:59 -05:00
parent d2aa8df1b9
commit d76dd610de
3 changed files with 4 additions and 4 deletions

View file

@ -22,5 +22,5 @@ optional = true
[dependencies.openssl]
openssl = "~0.2.4"
openssl = "~0.2.5"
optional = true

View file

@ -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

View file

@ -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());
}
}