2014-09-10 16:23:09 -04:00
|
|
|
|
[package]
|
|
|
|
|
name = "irc"
|
2018-10-03 11:34:37 -04:00
|
|
|
|
version = "0.13.6"
|
2018-02-14 15:03:12 +01:00
|
|
|
|
description = "the irc crate – usable, async IRC for Rust "
|
2017-06-23 13:45:11 -04:00
|
|
|
|
authors = ["Aaron Weiss <awe@pdgn.co>"]
|
2017-06-22 19:21:38 -04:00
|
|
|
|
license = "MPL-2.0"
|
2018-10-03 12:54:13 -04:00
|
|
|
|
keywords = ["irc", "client", "thread-safe", "async", "tokio"]
|
2017-06-26 17:10:39 -07:00
|
|
|
|
categories = ["asynchronous", "network-programming"]
|
2017-06-22 19:33:23 -04:00
|
|
|
|
documentation = "https://docs.rs/irc/"
|
2014-12-19 10:35:26 -05:00
|
|
|
|
repository = "https://github.com/aatxe/irc"
|
2014-11-08 14:14:23 -05:00
|
|
|
|
readme = "README.md"
|
2019-08-27 15:05:51 +02:00
|
|
|
|
edition = "2018"
|
2014-11-08 17:35:19 -05:00
|
|
|
|
|
2017-07-25 18:22:38 -04: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-25 18:22:38 -04:00
|
|
|
|
|
2018-03-10 14:55:23 +01:00
|
|
|
|
[workspace]
|
|
|
|
|
members = [ "./", "irc-proto" ]
|
|
|
|
|
|
2014-11-08 17:35:19 -05:00
|
|
|
|
[features]
|
2018-01-27 21:10:22 +01:00
|
|
|
|
default = ["ctcp", "toml"]
|
2016-01-16 11:18:11 -05:00
|
|
|
|
ctcp = []
|
2015-01-10 21:14:08 -08:00
|
|
|
|
nochanlists = []
|
2017-06-29 00:31:27 -07:00
|
|
|
|
json = ["serde_json"]
|
|
|
|
|
yaml = ["serde_yaml"]
|
2014-11-08 17:35:19 -05:00
|
|
|
|
|
2017-01-15 13:31:50 -05:00
|
|
|
|
[dependencies]
|
2019-10-16 03:12:29 +02:00
|
|
|
|
thiserror = "1.0.2"
|
2017-06-19 14:33:02 -04:00
|
|
|
|
bufstream = "0.1"
|
2020-01-28 18:16:48 -08:00
|
|
|
|
bytes = "0.5"
|
2017-06-28 22:24:23 -07:00
|
|
|
|
chrono = "0.4"
|
2017-01-15 17:48:49 -05:00
|
|
|
|
encoding = "0.2"
|
2018-03-10 14:55:23 +01:00
|
|
|
|
irc-proto = { version = "*", path = "irc-proto" }
|
2018-09-17 17:50:53 -04:00
|
|
|
|
log = "0.4"
|
|
|
|
|
native-tls = "0.2"
|
2019-08-27 15:05:51 +02:00
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2017-06-19 14:33:02 -04:00
|
|
|
|
serde_derive = "1.0"
|
2019-08-27 15:05:51 +02:00
|
|
|
|
tokio = { version = "0.2.4", features = ["time", "net", "stream", "macros", "stream"] }
|
|
|
|
|
tokio-util = { version = "0.2.0", features = ["codec"] }
|
|
|
|
|
tokio-tls = "0.3.0"
|
2017-06-29 00:31:27 -07:00
|
|
|
|
serde_json = { version = "1.0", optional = true }
|
2020-01-28 18:25:35 -08:00
|
|
|
|
serde_yaml = { version = "0.8", optional = true }
|
|
|
|
|
toml = { version = "0.5", optional = true }
|
2019-08-27 15:05:51 +02:00
|
|
|
|
pin-utils = "0.1.0-alpha.4"
|
2020-01-28 18:25:35 -08:00
|
|
|
|
parking_lot = "0.10.0"
|
2019-08-27 15:05:51 +02:00
|
|
|
|
futures-channel = "0.3.1"
|
2019-10-16 03:12:29 +02:00
|
|
|
|
futures-util = { version = "0.3.1", features = ["sink"] }
|
2017-06-29 00:31:27 -07:00
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-08-27 15:05:51 +02:00
|
|
|
|
futures = "0.3.1"
|
|
|
|
|
anyhow = "1.0.13"
|
2017-06-29 00:31:27 -07:00
|
|
|
|
args = "2.0"
|
|
|
|
|
getopts = "0.2"
|
2020-01-28 18:25:35 -08:00
|
|
|
|
env_logger = "0.7"
|