rust-irc/Cargo.toml

38 lines
690 B
TOML
Raw Normal View History

2014-09-10 22:23:09 +02:00
[package]
name = "irc"
2015-04-05 06:52:26 +02:00
version = "0.8.13"
2014-11-08 20:14:23 +01:00
description = "A simple, thread-safe IRC client library."
2014-09-10 22:23:09 +02:00
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
license = "CC0-1.0"
2014-11-08 20:14:23 +01:00
keywords = ["irc", "client", "thread-safe"]
documentation = "http://aatxe.github.io/irc/irc/"
repository = "https://github.com/aatxe/irc"
2014-11-08 20:14:23 +01:00
readme = "README.md"
[features]
default = ["ctcp", "encode", "ssl"]
ctcp = ["time"]
encode = ["encoding"]
ssl = ["openssl"]
nochanlists = []
[dependencies.rustc-serialize]
2015-03-23 18:32:13 +01:00
rustc-serialize = "~0.3.6"
[dependencies.time]
2015-03-23 18:32:13 +01:00
time = "~0.1.21"
optional = true
[dependencies.encoding]
2015-03-23 18:32:13 +01:00
encoding = "~0.2.26"
optional = true
[dependencies.openssl]
2015-03-23 18:32:13 +01:00
openssl = "~0.5.1"
optional = true