Fixed compilation, and updated README.
This commit is contained in:
parent
d2aa8df1b9
commit
d76dd610de
3 changed files with 4 additions and 4 deletions
|
@ -22,5 +22,5 @@ optional = true
|
|||
|
||||
[dependencies.openssl]
|
||||
|
||||
openssl = "~0.2.4"
|
||||
openssl = "~0.2.5"
|
||||
optional = true
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue