rust-irc/Cargo.toml

34 lines
654 B
TOML
Raw Normal View History

2014-09-10 16:23:09 -04:00
[package]
name = "irc"
2017-05-25 17:28:00 +02:00
version = "0.11.8"
2014-11-08 14:14:23 -05:00
description = "A simple, thread-safe IRC client library."
2014-09-10 16:23:09 -04:00
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
license = "CC0-1.0"
2014-11-08 14:14:23 -05:00
keywords = ["irc", "client", "thread-safe"]
documentation = "http://aatxe.github.io/irc/irc/"
repository = "https://github.com/aatxe/irc"
2014-11-08 14:14:23 -05:00
readme = "README.md"
[features]
default = ["ctcp"]
ctcp = []
nochanlists = []
[dependencies]
2017-06-19 14:33:02 -04:00
bufstream = "0.1"
2017-05-26 14:09:09 +02:00
bytes = "0.4"
2017-06-20 14:54:06 -04:00
error-chain = "0.10"
2017-01-15 17:48:49 -05:00
encoding = "0.2"
2017-01-15 18:10:35 -05:00
futures = "0.1"
2017-01-15 18:08:03 -05:00
native-tls = "0.1"
2017-01-15 18:10:35 -05:00
time = "0.1"
2017-06-19 14:33:02 -04:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2017-01-15 17:48:49 -05:00
tokio-core = "0.1"
2017-05-26 14:09:09 +02:00
tokio-io = "0.1"
2017-01-15 17:48:49 -05:00
tokio-service = "0.1"
tokio-tls = "0.1"