1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
name = "async-native-tls"
version = "0.5.0"
authors = ["dignifiedquire <me@dignifiedquire.com>"]
description = """
Native TLS using futures
"""
homepage = "https://docs.rs/crate/async-native-tls/"
documentation = "https://docs.rs/crate/async-native-tls/"
readme = "README.md"
categories = [
"asynchronous",
"cryptography",
"network-programming",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/async-email/async-native-tls"
[[test]]
name = "bad"
required-features = ["runtime-async-std"]
[[test]]
name = "smoke"
required-features = ["runtime-async-std"]
[dependencies.futures-util]
version = "0.3.1"
features = ["io"]
optional = true
[dependencies.native-tls]
version = "0.2.8"
features = ["alpn"]
[dependencies.thiserror]
version = "1.0.9"
[dependencies.tokio]
version = "1.0"
features = ["io-util"]
optional = true
default-features = false
[dependencies.url]
version = "2.1.1"
[dev-dependencies.async-std]
version = "1.6.0"
features = ["attributes"]
[dev-dependencies.cfg-if]
version = "1.0.0"
[dev-dependencies.env_logger]
version = "0.11.0"
[dev-dependencies.futures]
version = "0.3.1"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]
[features]
default = ["runtime-async-std"]
runtime-async-std = ["futures-util"]
runtime-tokio = ["tokio"]
|