rust-irc/Cargo.toml

69 lines
1.9 KiB
TOML
Raw Normal View History

2014-09-10 16:23:09 -04:00
[package]
name = "irc"
2018-10-03 11:34:37 -04:00
version = "0.13.6"
description = "the irc crate usable, async IRC for Rust "
authors = ["Aaron Weiss <awe@pdgn.co>"]
license = "MPL-2.0"
keywords = ["irc", "client", "thread-safe", "async", "tokio"]
2017-06-26 17:10:39 -07:00
categories = ["asynchronous", "network-programming"]
documentation = "https://docs.rs/irc/"
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"
2017-07-25 18:22:38 -04:00
[badges]
travis-ci = { repository = "aatxe/irc" }
is-it-maintained-issue-resolution = { repository = "aatxe/irc" }
is-it-maintained-open-issues = { repository = "aatxe/irc" }
2017-07-25 18:22:38 -04:00
[workspace]
members = [ "./", "irc-proto" ]
[features]
2020-01-28 17:58:38 -08:00
default = ["ctcp", "toml_config"]
ctcp = []
nochanlists = []
2020-01-28 17:58:38 -08:00
json_config = ["serde", "serde_derive", "serde_json"]
toml_config = ["serde", "serde_derive", "toml"]
yaml_config = ["serde", "serde_derive", "serde_yaml"]
2020-03-04 14:38:01 +08:00
proxy = ["tokio-socks"]
2020-01-28 17:58:38 -08:00
# Temporary transitionary features
json = ["json_config"]
yaml = ["yaml_config"]
[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"
irc-proto = { version = "*", path = "irc-proto" }
log = "0.4"
native-tls = "0.2"
2020-01-28 17:58:38 -08:00
serde = { version = "1.0", features = ["derive"], optional = true }
serde_derive = { version = "1.0", optional = true }
tokio = { version = "0.2.4", features = ["time", "net", "stream", "macros"] }
tokio-util = { version = "0.3.0", features = ["codec"] }
2020-03-04 14:38:01 +08:00
tokio-socks = { version = "0.2.0", optional = true }
2019-08-27 15:05:51 +02:00
tokio-tls = "0.3.0"
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"] }
[dev-dependencies]
2019-08-27 15:05:51 +02:00
futures = "0.3.1"
anyhow = "1.0.13"
args = "2.0"
getopts = "0.2"
2020-01-28 18:25:35 -08:00
env_logger = "0.7"
2020-03-04 14:38:01 +08:00
[[example]]
name = "proxy"
path = "examples/proxy.rs"
required-features = ["proxy"]