tokio-rustls/Cargo.toml

25 lines
671 B
TOML
Raw Normal View History

2017-02-21 03:52:43 +00:00
[package]
name = "tokio-rustls"
2017-03-30 07:39:11 +00:00
version = "0.1.5"
2017-02-21 03:52:43 +00:00
authors = ["quininer kel <quininer@live.com>"]
2017-02-22 05:03:21 +00:00
license = "MIT/Apache-2.0"
repository = "https://github.com/quininer/tokio-rustls"
homepage = "https://github.com/quininer/tokio-rustls"
documentation = "https://docs.rs/tokio-rustls"
2017-03-30 07:39:11 +00:00
description = "Asynchronous TLS/SSL streams for Tokio using Rustls."
categories = ["asynchronous", "cryptography", "network-programming"]
2017-02-21 03:52:43 +00:00
[dependencies]
2017-02-22 05:03:21 +00:00
futures = "0.1"
2017-03-16 02:15:06 +00:00
tokio-io = "0.1"
2017-02-22 05:03:21 +00:00
rustls = "0.5"
tokio-proto = { version = "0.1", optional = true }
[dev-dependencies]
2017-03-16 02:41:41 +00:00
tokio-core = "0.1"
2017-02-22 05:03:21 +00:00
clap = "2.20"
webpki-roots = "0.7"
2017-03-30 06:49:24 +00:00
[target.'cfg(unix)'.dev-dependencies]
2017-02-22 05:03:21 +00:00
tokio-file-unix = "0.2"