trust-dns-rustls 0.1.1

An extension for the TRust-DNS client to use rustls. To use, disable the tls feature on TRust-DNS.
Documentation
[package]
name = "trust-dns-rustls"
version = "0.1.1"
authors = ["Benjamin Fry <benjaminfry@me.com>"]

# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown)
description = """
An extension for the TRust-DNS client to use rustls. To use, disable the tls feature on TRust-DNS.
"""

# These URLs point to more information about the repository
documentation = "https://docs.rs/trust-dns"
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"

# custom build steps
# build = "build.rs"

[badges]
travis-ci = { repository = "bluejekyll/trust-dns" }
appveyor = { repository = "bluejekyll/trust-dns", branch = "master", service = "github" }

[features]
default = ["ring"]
ring = ["trust-dns/ring"]

# 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 = "^0.1.6"
rustls = "^0.8.0"
tokio-core = "^0.1"
tokio-rustls = "^0.2"
# disables default features, i.e. openssl...
trust-dns = { version = "^0.10", path = "../client", default-features = false }

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