tokio-rustls/Cargo.toml

37 lines
991 B
TOML
Raw Normal View History

2017-02-21 03:52:43 +00:00
[package]
name = "tokio-rustls"
2018-07-16 13:26:03 +00:00
version = "0.7.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"]
2017-02-21 03:52:43 +00:00
[badges]
travis-ci = { repository = "quininer/tokio-rustls" }
appveyor = { repository = "quininer/tokio-rustls" }
2017-02-21 03:52:43 +00:00
[dependencies]
2018-04-14 10:17:04 +00:00
futures-core = { version = "0.2.0", optional = true }
futures-io = { version = "0.2.0", optional = true }
tokio = { version = "0.1.6", optional = true }
2018-08-16 04:20:27 +00:00
bytes = { version = "*" }
iovec = { version = "*" }
2018-07-15 11:28:56 +00:00
rustls = "0.13"
webpki = "0.18.1"
[dev-dependencies]
2018-05-03 10:07:31 +00:00
# futures = "0.2.0"
tokio = "0.1.6"
2017-03-30 06:49:24 +00:00
2018-03-21 05:08:47 +00:00
[features]
2018-03-31 07:16:31 +00:00
default = [ "tokio" ]
# unstable-futures = [
# "futures-core",
# "futures-io",
# "tokio/unstable-futures"
# ]