rust-irc/Cargo.toml

25 lines
493 B
TOML
Raw Normal View History

2014-09-10 22:23:09 +02:00
[package]
name = "irc"
version = "0.3.0"
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://www.rust-ci.org/aaronweiss74/irc/doc/irc/"
repository = "https://github.com/aaronweiss74/irc"
readme = "README.md"
[features]
ssl = ["openssl"]
[dependencies.encoding]
encoding = "~0.2.4"
[dependencies.openssl]
openssl = "~0.2.0"
optional = true