2017-02-21 03:52:43 +00:00
|
|
|
[package]
|
|
|
|
name = "tokio-rustls"
|
2019-12-08 08:54:37 +00:00
|
|
|
version = "0.12.1"
|
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]
|
2019-12-02 15:55:11 +00:00
|
|
|
github-actions = { repository = "quininer/tokio-rustls", workflow = "Rust" }
|
2017-08-15 14:00:20 +00:00
|
|
|
|
2017-02-21 03:52:43 +00:00
|
|
|
[dependencies]
|
2019-11-27 14:23:10 +00:00
|
|
|
bytes = "0.5"
|
2019-11-26 22:37:00 +00:00
|
|
|
tokio = "0.2.0"
|
|
|
|
futures-core = "0.3.1"
|
2019-08-10 15:43:19 +00:00
|
|
|
rustls = "0.16"
|
|
|
|
webpki = "0.21"
|
2017-02-21 11:08:23 +00:00
|
|
|
|
2019-02-25 15:48:06 +00:00
|
|
|
[features]
|
|
|
|
early-data = []
|
2019-11-06 08:18:30 +00:00
|
|
|
dangerous_configuration = ["rustls/dangerous_configuration"]
|
2019-12-07 16:59:15 +00:00
|
|
|
unstable = []
|
2019-02-25 15:48:06 +00:00
|
|
|
|
2017-02-21 11:08:23 +00:00
|
|
|
[dev-dependencies]
|
2019-11-26 22:37:00 +00:00
|
|
|
tokio = { version = "0.2.0", features = ["macros", "net", "io-util", "rt-core", "time"] }
|
|
|
|
futures-util = "0.3.1"
|
2018-08-16 12:44:37 +00:00
|
|
|
lazy_static = "1"
|
2019-10-23 11:33:38 +00:00
|
|
|
webpki-roots = "0.18"
|