rust-irc/Cargo.toml
2017-06-27 14:26:53 -07:00

32 lines
724 B
TOML

[package]
name = "irc"
version = "0.12.2"
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"]
categories = ["asynchronous", "network-programming"]
documentation = "https://docs.rs/irc/"
repository = "https://github.com/aatxe/irc"
readme = "README.md"
[features]
default = ["ctcp"]
ctcp = []
nochanlists = []
[dependencies]
bufstream = "0.1"
bytes = "0.4"
encoding = "0.2"
error-chain = "0.10"
futures = "0.1"
native-tls = "0.1"
time = "0.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tokio-core = "0.1"
tokio-io = "0.1"
tokio-mockstream = "1.1"
tokio-tls = "0.1"