rust-irc/Cargo.toml

62 lines
1.7 KiB
TOML
Raw Normal View History

2014-09-10 22:23:09 +02:00
[package]
name = "irc"
2018-10-03 17:34:37 +02: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-27 02:10:39 +02:00
categories = ["asynchronous", "network-programming"]
documentation = "https://docs.rs/irc/"
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"
2017-07-26 00:22:38 +02: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-26 00:22:38 +02:00
[workspace]
members = [ "./", "irc-proto" ]
[features]
2020-01-29 02:58:38 +01:00
default = ["ctcp", "toml_config"]
ctcp = []
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"]
[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"
irc-proto = { version = "*", path = "irc-proto" }
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 }
tokio = { version = "0.2.4", features = ["time", "net", "stream", "macros"] }
tokio-util = { version = "0.3.0", features = ["codec"] }
2019-08-27 15:05:51 +02:00
tokio-tls = "0.3.0"
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"] }
[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-29 03:25:35 +01:00
env_logger = "0.7"