rust-irc/Cargo.toml
2016-01-16 11:50:14 -05:00

33 lines
659 B
TOML

[package]
name = "irc"
version = "0.9.2"
description = "A simple, thread-safe IRC client library."
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
license = "CC0-1.0"
keywords = ["irc", "client", "thread-safe"]
documentation = "http://aatxe.github.io/irc/irc/"
repository = "https://github.com/aatxe/irc"
readme = "README.md"
[features]
default = ["ctcp", "encode", "ssl"]
ctcp = []
encode = ["encoding"]
ssl = ["openssl"]
nochanlists = []
[dependencies.rustc-serialize]
version = "~0.3.16"
[dependencies.time]
version = "~0.1.34"
[dependencies.encoding]
version = "~0.2.32"
optional = true
[dependencies.openssl]
version = "~0.7.0"
optional = true