rust-irc/Cargo.toml
2017-06-22 19:38:08 -04:00

31 lines
682 B
TOML

[package]
name = "irc"
version = "0.12.0"
description = "A simple, thread-safe, and async-friendly IRC client library."
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
license = "MPL-2.0"
keywords = ["irc", "client", "thread-safe", "async", "tokio"]
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"