2014-09-10 22:23:09 +02:00
|
|
|
|
[package]
|
|
|
|
|
name = "irc"
|
2018-03-30 22:18:59 +02:00
|
|
|
|
version = "0.13.5"
|
2018-02-14 15:03:12 +01:00
|
|
|
|
description = "the irc crate – usable, async IRC for Rust "
|
2017-06-23 19:45:11 +02:00
|
|
|
|
authors = ["Aaron Weiss <awe@pdgn.co>"]
|
2017-06-23 01:21:38 +02:00
|
|
|
|
license = "MPL-2.0"
|
2018-02-14 15:03:12 +01:00
|
|
|
|
keywords = ["irc", "client", "thread-safe", "async", "tokio", "protocol"]
|
2017-06-27 02:10:39 +02:00
|
|
|
|
categories = ["asynchronous", "network-programming"]
|
2017-06-23 01:33:23 +02:00
|
|
|
|
documentation = "https://docs.rs/irc/"
|
2014-12-19 16:35:26 +01:00
|
|
|
|
repository = "https://github.com/aatxe/irc"
|
2014-11-08 20:14:23 +01:00
|
|
|
|
readme = "README.md"
|
2014-11-08 23:35:19 +01:00
|
|
|
|
|
2017-07-26 00:22:38 +02:00
|
|
|
|
[badges]
|
|
|
|
|
travis-ci = { repository = "aatxe/irc" }
|
2018-03-31 22:29:27 +02:00
|
|
|
|
is-it-maintained-issue-resolution = { repository = "aatxe/irc" }
|
|
|
|
|
is-it-maintained-open-issues = { repository = "aatxe/irc" }
|
2017-07-26 00:22:38 +02:00
|
|
|
|
|
2014-11-08 23:35:19 +01:00
|
|
|
|
[features]
|
2018-01-27 21:10:22 +01:00
|
|
|
|
default = ["ctcp", "toml"]
|
2016-01-16 17:18:11 +01:00
|
|
|
|
ctcp = []
|
2015-01-11 06:14:08 +01:00
|
|
|
|
nochanlists = []
|
2017-06-29 09:31:27 +02:00
|
|
|
|
json = ["serde_json"]
|
|
|
|
|
yaml = ["serde_yaml"]
|
2014-11-08 23:35:19 +01:00
|
|
|
|
|
2017-01-15 19:31:50 +01:00
|
|
|
|
[dependencies]
|
2017-06-19 20:33:02 +02:00
|
|
|
|
bufstream = "0.1"
|
2017-05-26 14:09:09 +02:00
|
|
|
|
bytes = "0.4"
|
2017-06-29 07:24:23 +02:00
|
|
|
|
chrono = "0.4"
|
2017-01-15 23:48:49 +01:00
|
|
|
|
encoding = "0.2"
|
2018-01-28 00:52:11 +01:00
|
|
|
|
failure = "0.1"
|
2017-01-16 00:10:35 +01:00
|
|
|
|
futures = "0.1"
|
2017-12-12 14:02:45 +01:00
|
|
|
|
log = "0.3"
|
2017-01-16 00:08:03 +01:00
|
|
|
|
native-tls = "0.1"
|
2017-06-19 20:33:02 +02:00
|
|
|
|
serde = "1.0"
|
|
|
|
|
serde_derive = "1.0"
|
2017-06-29 09:31:27 +02:00
|
|
|
|
serde_json = { version = "1.0", optional = true }
|
|
|
|
|
serde_yaml = { version = "0.7", optional = true }
|
2017-01-15 23:48:49 +01:00
|
|
|
|
tokio-core = "0.1"
|
2017-05-26 14:09:09 +02:00
|
|
|
|
tokio-io = "0.1"
|
2017-06-22 03:50:38 +02:00
|
|
|
|
tokio-mockstream = "1.1"
|
2017-06-28 03:21:11 +02:00
|
|
|
|
tokio-timer = "0.1"
|
2017-01-15 23:48:49 +01:00
|
|
|
|
tokio-tls = "0.1"
|
2017-06-29 09:31:27 +02:00
|
|
|
|
toml = { version = "0.4", optional = true }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
args = "2.0"
|
|
|
|
|
getopts = "0.2"
|