trust-dns-rustls 0.19.7

Trust-DNS is a safe and secure DNS library. This is an extension for the Trust-DNS client to use rustls for TLS.
Documentation
[package]
name = "trust-dns-rustls"
version = "0.19.7"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown)
description = """
Trust-DNS is a safe and secure DNS library. This is an extension for the Trust-DNS client to use rustls for TLS.
"""

# These URLs point to more information about the repository
documentation = "https://docs.rs/trust-dns-rustls"
homepage = "http://www.trust-dns.org/index.html"
repository = "https://github.com/bluejekyll/trust-dns"

# This points to a file in the repository (relative to this Cargo.toml). The
# contents of this file are stored and indexed in the registry.
readme = "README.md"

# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["DNS", "BIND", "dig", "named", "dnssec"]
categories = ["network-programming"]

# This is a string description of the license for this package. Currently
# crates.io will validate the license provided against a whitelist of known
# license identifiers from http://spdx.org/licenses/. Multiple licenses can
# be separated with a `/`
license = "MIT/Apache-2.0"

[badges]
#github-actions = { repository = "bluejekyll/trust-dns", branch = "master", workflow = "test" }
codecov = { repository = "bluejekyll/trust-dns", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }

[features]
default = ["backtrace"]
backtrace = ["trust-dns-proto/backtrace"]
dns-over-rustls = []

# WARNING: there is a bug in the mutual tls auth code at the moment see issue #100
# mtls = ["tls"]

[lib]
name = "trust_dns_rustls"
path = "src/lib.rs"

[dependencies]
futures = { version = "0.3.4", default-features = false, features = ["std"] }
log = "0.4"
rustls = "0.17"
tokio = { version = "0.2.16", features = ["tcp", "io-util"] }
tokio-rustls = { version = "0.13", features = ["early-data"] }
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.19.7", path = "../proto", features = ["tokio-runtime"], default-features = false }
webpki = "0.21"

[dev-dependencies]
openssl = { version = "0.10", features = ["v102", "v110"] }