[package]
name = "trust-dns-proto"
version = "0.2.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
description = """
TRust-DNS is a safe and secure DNS library. This is the foundational DNS protocol library for all TRust-DNS projects.
"""
documentation = "https://docs.rs/trust-dns"
homepage = "http://www.trust-dns.org/index.html"
repository = "https://github.com/bluejekyll/trust-dns"
readme = "README.md"
keywords = ["DNS", "BIND", "dig", "named", "dnssec"]
categories = ["network-programming"]
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "bluejekyll/trust-dns" }
appveyor = { repository = "bluejekyll/trust-dns", branch = "master", service = "github" }
codecov = { repository = "bluejekyll/trust-dns", branch = "master", service = "github" }
[features]
dnssec-openssl = ["dnssec", "openssl"]
dnssec-ring = ["dnssec", "ring", "untrusted"]
dnssec = ["data-encoding"]
[lib]
name = "trust_dns_proto"
path = "src/lib.rs"
[dependencies]
data-encoding = { version = "2.1.0", optional = true }
error-chain = "0.1.12"
futures = "^0.1.17"
log = "^0.3.5"
openssl = { version = "^0.9.8", features = ["v102", "v110"], optional = true }
rand = "^0.3"
ring = { version = "^0.12", optional = true }
tokio-core = "^0.1"
tokio-io = "^0.1"
untrusted = { version = "^0.5", optional = true }
url = "1.6.0"