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]
|
[dependencies.openssl]
|
||||||
|
|
||||||
openssl = "~0.2.4"
|
openssl = "~0.2.5"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# irc [](https://travis-ci.org/aaronweiss74/irc) #
|
# irc [](https://travis-ci.org/aatxe/irc) #
|
||||||
A thread-safe IRC library in Rust based on iterators. It's hopefully compliant with
|
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
|
[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
|
online [here](http://aatxe.github.io/irc/irc/). The documentation is generated
|
||||||
|
|
|
@ -332,7 +332,7 @@ mod test {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn is_error() {
|
fn is_error() {
|
||||||
assert!(!Response::RPL_NAMREPLY.is_error())
|
assert!(!Response::RPL_NAMREPLY.is_error());
|
||||||
assert!(Response::ERR_NICKNAMEINUSE.is_error())
|
assert!(Response::ERR_NICKNAMEINUSE.is_error());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue