2017-02-21 03:52:43 +00:00
|
|
|
[package]
|
|
|
|
name = "tokio-rustls"
|
2019-05-18 08:05:10 +00:00
|
|
|
version = "0.12.0-alpha"
|
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 20:17:03 +00:00
|
|
|
readme = "README.md"
|
2017-03-30 07:39:11 +00:00
|
|
|
description = "Asynchronous TLS/SSL streams for Tokio using Rustls."
|
2017-03-30 07:22:06 +00:00
|
|
|
categories = ["asynchronous", "cryptography", "network-programming"]
|
2019-05-04 14:44:40 +00:00
|
|
|
edition = "2018"
|
2017-02-21 03:52:43 +00:00
|
|
|
|
2017-08-15 14:00:20 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "quininer/tokio-rustls" }
|
|
|
|
appveyor = { repository = "quininer/tokio-rustls" }
|
|
|
|
|
2017-02-21 03:52:43 +00:00
|
|
|
[dependencies]
|
2019-05-21 16:54:10 +00:00
|
|
|
smallvec = "0.6"
|
2019-05-18 15:44:29 +00:00
|
|
|
futures = { package = "futures-preview", version = "0.3.0-alpha.16" }
|
2019-01-20 20:38:36 +00:00
|
|
|
rustls = "0.15"
|
|
|
|
webpki = "0.19"
|
2017-02-21 11:08:23 +00:00
|
|
|
|
2019-02-25 15:48:06 +00:00
|
|
|
[features]
|
|
|
|
early-data = []
|
|
|
|
|
2017-02-21 11:08:23 +00:00
|
|
|
[dev-dependencies]
|
2019-05-18 16:48:56 +00:00
|
|
|
romio = "0.3.0-alpha.8"
|
2018-08-16 12:44:37 +00:00
|
|
|
lazy_static = "1"
|
2019-02-18 12:01:37 +00:00
|
|
|
webpki-roots = "0.16"
|