rust-irc/Cargo.toml

34 lines
656 B
TOML
Raw Normal View History

2014-09-10 22:23:09 +02:00
[package]
name = "irc"
2016-02-21 18:39:59 +01:00
version = "0.10.1"
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 = []
encode = ["encoding"]
ssl = ["openssl"]
nochanlists = []
[dependencies.rustc-serialize]
2016-02-12 17:23:18 +01:00
version = "0.3.18"
[dependencies.time]
2016-02-12 17:23:18 +01:00
version = "0.1.34"
[dependencies.encoding]
2016-02-12 17:23:18 +01:00
version = "0.2.32"
optional = true
[dependencies.openssl]
2016-02-12 17:23:18 +01:00
version = "0.7.6"
optional = true