rust-irc/Cargo.toml

27 lines
507 B
TOML
Raw Normal View History

2014-09-10 22:23:09 +02:00
[package]
name = "irc"
2014-12-19 17:31:09 +01:00
version = "0.5.8"
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 = "Unlicense"
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]
encode = ["encoding"]
ssl = ["openssl"]
[dependencies.encoding]
2014-12-19 17:31:09 +01:00
encoding = "~0.2.7"
optional = true
[dependencies.openssl]
2014-12-19 17:31:09 +01:00
openssl = "~0.2.6"
optional = true