rust-irc/Cargo.toml

53 lines
1.2 KiB
TOML
Raw Normal View History

2014-09-10 16:23:09 -04:00
[package]
name = "irc"
2018-03-30 22:18:59 +02:00
version = "0.13.5"
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", "protocol"]
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"
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]
2018-01-27 21:10:22 +01:00
default = ["ctcp", "toml"]
ctcp = []
nochanlists = []
json = ["serde_json"]
yaml = ["serde_yaml"]
[dependencies]
2017-06-19 14:33:02 -04:00
bufstream = "0.1"
2017-05-26 14:09:09 +02:00
bytes = "0.4"
2017-06-28 22:24:23 -07:00
chrono = "0.4"
2017-01-15 17:48:49 -05:00
encoding = "0.2"
failure = "0.1"
2017-01-15 18:10:35 -05:00
futures = "0.1"
irc-proto = { version = "*", path = "irc-proto" }
log = "0.4"
native-tls = "0.2"
2017-06-19 14:33:02 -04:00
serde = "1.0"
serde_derive = "1.0"
serde_json = { version = "1.0", optional = true }
serde_yaml = { version = "0.7", optional = true }
2018-09-22 23:31:14 +03:00
tokio = "0.1"
tokio-codec = "0.1"
2017-05-26 14:09:09 +02:00
tokio-io = "0.1"
2017-06-21 21:50:38 -04:00
tokio-mockstream = "1.1"
tokio-timer = "0.1"
tokio-tls = "0.2"
toml = { version = "0.4", optional = true }
[dev-dependencies]
args = "2.0"
getopts = "0.2"