2014-09-10 22:23:09 +02:00
|
|
|
|
[package]
|
|
|
|
|
name = "irc"
|
2018-10-03 17:34:37 +02: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 19:45:11 +02:00
|
|
|
|
authors = ["Aaron Weiss <awe@pdgn.co>"]
|
2017-06-23 01:21:38 +02:00
|
|
|
|
license = "MPL-2.0"
|
2018-10-03 18:54:13 +02:00
|
|
|
|
keywords = ["irc", "client", "thread-safe", "async", "tokio"]
|
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"
|
2019-08-27 15:05:51 +02:00
|
|
|
|
edition = "2018"
|
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
|
|
|
|
|
2018-03-10 14:55:23 +01:00
|
|
|
|
[workspace]
|
|
|
|
|
members = [ "./", "irc-proto" ]
|
|
|
|
|
|
2014-11-08 23:35:19 +01:00
|
|
|
|
[features]
|
2020-01-29 02:58:38 +01:00
|
|
|
|
default = ["ctcp", "toml_config"]
|
2016-01-16 17:18:11 +01:00
|
|
|
|
ctcp = []
|
2015-01-11 06:14:08 +01:00
|
|
|
|
nochanlists = []
|
2020-01-29 02:58:38 +01:00
|
|
|
|
json_config = ["serde", "serde_derive", "serde_json"]
|
|
|
|
|
toml_config = ["serde", "serde_derive", "toml"]
|
|
|
|
|
yaml_config = ["serde", "serde_derive", "serde_yaml"]
|
|
|
|
|
|
|
|
|
|
# Temporary transitionary features
|
|
|
|
|
json = ["json_config"]
|
|
|
|
|
yaml = ["yaml_config"]
|
2014-11-08 23:35:19 +01:00
|
|
|
|
|
2017-01-15 19:31:50 +01:00
|
|
|
|
[dependencies]
|
2019-10-16 03:12:29 +02:00
|
|
|
|
thiserror = "1.0.2"
|
2017-06-19 20:33:02 +02:00
|
|
|
|
bufstream = "0.1"
|
2020-01-29 03:16:48 +01:00
|
|
|
|
bytes = "0.5"
|
2017-06-29 07:24:23 +02:00
|
|
|
|
chrono = "0.4"
|
2017-01-15 23:48:49 +01:00
|
|
|
|
encoding = "0.2"
|
2018-03-10 14:55:23 +01:00
|
|
|
|
irc-proto = { version = "*", path = "irc-proto" }
|
2018-09-17 23:50:53 +02:00
|
|
|
|
log = "0.4"
|
|
|
|
|
native-tls = "0.2"
|
2020-01-29 02:58:38 +01:00
|
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
|
|
|
serde_derive = { version = "1.0", optional = true }
|
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 09:31:27 +02:00
|
|
|
|
serde_json = { version = "1.0", optional = true }
|
2020-01-29 03:25:35 +01: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-29 03:25:35 +01: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 09:31:27 +02:00
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-08-27 15:05:51 +02:00
|
|
|
|
futures = "0.3.1"
|
|
|
|
|
anyhow = "1.0.13"
|
2017-06-29 09:31:27 +02:00
|
|
|
|
args = "2.0"
|
|
|
|
|
getopts = "0.2"
|
2020-01-29 03:25:35 +01:00
|
|
|
|
env_logger = "0.7"
|