rust-irc/Cargo.toml

32 lines
671 B
TOML
Raw Normal View History

2014-09-10 22:23:09 +02:00
[package]
name = "irc"
2017-06-25 04:18:47 +02:00
version = "0.12.1"
description = "A simple, thread-safe, and async-friendly IRC client library."
authors = ["Aaron Weiss <awe@pdgn.co>"]
license = "MPL-2.0"
keywords = ["irc", "client", "thread-safe", "async", "tokio"]
documentation = "https://docs.rs/irc/"
repository = "https://github.com/aatxe/irc"
2014-11-08 20:14:23 +01:00
readme = "README.md"
[features]
default = ["ctcp"]
ctcp = []
nochanlists = []
[dependencies]
2017-06-19 20:33:02 +02:00
bufstream = "0.1"
2017-05-26 14:09:09 +02:00
bytes = "0.4"
2017-01-15 23:48:49 +01:00
encoding = "0.2"
error-chain = "0.10"
2017-01-16 00:10:35 +01:00
futures = "0.1"
2017-01-16 00:08:03 +01:00
native-tls = "0.1"
2017-01-16 00:10:35 +01:00
time = "0.1"
2017-06-19 20:33:02 +02:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2017-01-15 23:48:49 +01:00
tokio-core = "0.1"
2017-05-26 14:09:09 +02:00
tokio-io = "0.1"
2017-06-22 03:50:38 +02:00
tokio-mockstream = "1.1"
2017-01-15 23:48:49 +01:00
tokio-tls = "0.1"