Files
tokio/tokio-tls/Cargo.toml
T

61 lines
1.6 KiB
TOML
Raw Normal View History

2018-08-08 08:36:17 -07:00
[package]
name = "tokio-tls"
2018-08-08 10:17:28 -07:00
# When releasing to crates.io:
# - Remove path dependencies
2018-08-08 10:17:28 -07:00
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
2018-08-08 10:17:28 -07:00
# - Update CHANGELOG.md.
2019-05-14 10:27:36 -07:00
# - Create "v0.3.x" git tag.
version = "0.3.0"
edition = "2018"
2018-08-08 10:17:28 -07:00
authors = ["Carl Lerche <[email protected]>"]
2018-08-08 08:36:17 -07:00
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
2019-01-06 23:25:55 -08:00
documentation = "https://docs.rs/tokio-tls/0.2.1/tokio_tls/"
2018-08-08 08:36:17 -07:00
description = """
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
for nonblocking I/O streams.
"""
categories = ["asynchronous", "network-programming"]
2019-05-14 10:27:36 -07:00
publish = false
2018-08-08 08:36:17 -07:00
[badges]
travis-ci = { repository = "tokio-rs/tokio-tls" }
[dependencies]
native-tls = "0.2"
2019-05-14 10:27:36 -07:00
tokio-io = { version = "0.2.0", path = "../tokio-io" }
2018-08-08 08:36:17 -07:00
[dev-dependencies]
2019-05-14 10:27:36 -07:00
tokio = { version = "0.2.0", path = "../tokio" }
2019-07-16 18:26:08 +01:00
tokio-tcp = { version = "0.2.0", path = "../tokio-tcp", features = ["async-traits"] }
2018-08-08 08:36:17 -07:00
cfg-if = "0.1"
2018-08-10 21:37:45 +02:00
env_logger = { version = "0.5", default-features = false }
2019-07-16 18:26:08 +01:00
futures-preview = { version = "0.3.0-alpha.17", features = ["async-await", "nightly"] }
2018-08-08 08:36:17 -07:00
[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",
]