tokio-rustls/Cargo.toml

35 lines
961 B
TOML
Raw Normal View History

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."
categories = ["asynchronous", "cryptography", "network-programming"]
2019-05-04 14:44:40 +00:00
edition = "2018"
2017-02-21 03:52:43 +00:00
[badges]
2019-12-02 15:55:11 +00:00
github-actions = { repository = "quininer/tokio-rustls", workflow = "Rust" }
2017-02-21 03:52:43 +00:00
[dependencies]
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"
bytes = { version = "0.5", optional = true }
2019-02-25 15:48:06 +00:00
[features]
early-data = []
dangerous_configuration = ["rustls/dangerous_configuration"]
unstable = ["bytes"]
2019-02-25 15:48:06 +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"