tokio-rustls/tokio-native-tls/Cargo.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

2020-01-09 23:36:35 +00:00
[package]
name = "tokio-native-tls"
# When releasing to crates.io:
# - Remove path dependencies
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.3.1"
2020-01-09 23:36:35 +00:00
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tls"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-native-tls"
2020-01-09 23:36:35 +00:00
description = """
An implementation of TLS/SSL streams for Tokio using native-tls giving an implementation of TLS
for nonblocking I/O streams.
"""
categories = ["asynchronous", "network-programming"]
[dependencies]
native-tls = "0.2"
tokio = "1.0"
2020-01-09 23:36:35 +00:00
2022-12-20 17:00:12 +00:00
[features]
vendored = ["native-tls/vendored"]
2020-01-09 23:36:35 +00:00
[dev-dependencies]
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "io-util", "net"] }
2023-02-06 08:39:21 +00:00
cfg-if = "1.0"
env_logger = { version = "0.10", default-features = false }
2020-01-09 23:36:35 +00:00
futures = { version = "0.3.0", features = ["async-await"] }
tempfile = "3.1"
lazy_static = "1.4.0"
2020-01-09 23:36:35 +00:00
[package.metadata.docs.rs]
all-features = true