mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00

Also bumps: * tokio-async-await (0.1.5) * tokio-executor (0.1.6) * tokio-fs (0.1.5) * tokio-io (0.1.11) * tokio-reactor (0.1.8) * tokio-tcp (0.1.3) * tokio-threadpool (0.1.10) * tokio-tls (0.2.1) * tokio-uds (0.2.5) ...and updates LICENSE files to 2019.
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[package]
|
|
name = "tokio-tls"
|
|
# When releasing to crates.io:
|
|
# - Update html_root_url.
|
|
# - Update CHANGELOG.md.
|
|
# - Create "tokio-tls-0.2.x" git tag.
|
|
version = "0.2.1"
|
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/tokio-rs/tokio"
|
|
homepage = "https://tokio.rs"
|
|
documentation = "https://docs.rs/tokio-tls/0.2.1/tokio_tls/"
|
|
description = """
|
|
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
|
|
for nonblocking I/O streams.
|
|
"""
|
|
categories = ["asynchronous", "network-programming"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "tokio-rs/tokio-tls" }
|
|
|
|
[dependencies]
|
|
futures = "0.1.23"
|
|
native-tls = "0.2"
|
|
tokio-io = { version = "0.1.7", path = "../tokio-io" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "0.1", path = "../" }
|
|
cfg-if = "0.1"
|
|
env_logger = { version = "0.5", default-features = false }
|
|
|
|
[target.'cfg(all(not(target_os = "macos"), not(windows), not(target_os = "ios")))'.dev-dependencies]
|
|
openssl = "0.10"
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dev-dependencies]
|
|
security-framework = "0.2"
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
schannel = "0.1"
|
|
|
|
[target.'cfg(windows)'.dev-dependencies.winapi]
|
|
version = "0.3"
|
|
features = [
|
|
"lmcons",
|
|
"basetsd",
|
|
"minwinbase",
|
|
"minwindef",
|
|
"ntdef",
|
|
"sysinfoapi",
|
|
"timezoneapi",
|
|
"wincrypt",
|
|
"winerror",
|
|
]
|