Bumped version number to 0.7.1, added default features.
This commit is contained in:
parent
dbd0e4b65b
commit
7bef8b0a0c
1 changed files with 6 additions and 5 deletions
11
Cargo.toml
11
Cargo.toml
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "irc"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
description = "A simple, thread-safe IRC client library."
|
||||
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
|
||||
license = "Unlicense"
|
||||
|
@ -12,25 +12,26 @@ readme = "README.md"
|
|||
|
||||
[features]
|
||||
|
||||
default = ["ctcp", "encode", "ssl"]
|
||||
ctcp = ["time"]
|
||||
encode = ["encoding"]
|
||||
ssl = ["openssl"]
|
||||
|
||||
[dependencies.rustc-serialize]
|
||||
|
||||
rustc-serialize = "~0.1.4"
|
||||
rustc-serialize = "~0.1.5"
|
||||
|
||||
[dependencies.time]
|
||||
|
||||
time = "~0.1.3"
|
||||
time = "~0.1.5"
|
||||
optional = true
|
||||
|
||||
[dependencies.encoding]
|
||||
|
||||
encoding = "~0.2.8"
|
||||
encoding = "~0.2.11"
|
||||
optional = true
|
||||
|
||||
[dependencies.openssl]
|
||||
|
||||
openssl = "~0.2.6"
|
||||
openssl = "~0.2.9"
|
||||
optional = true
|
||||
|
|
Loading…
Reference in a new issue