[package]
name = "trust-dns"
version = "0.11.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
description = """
TRust-DNS is a safe and secure DNS library. This is the Client library with DNSec support.
DNSSec with NSEC validation for negative records, is complete. The client supports
dynamic DNS with SIG0 authenticated requests, implementing easy to use high level
funtions. TRust-DNS is based on the Tokio and Futures libraries, which means
it should be easily integrated into other software that also use those
libraries.
"""
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" }
[features]
default = ["openssl", "tls"]
tls = ["openssl", "tokio-openssl"]
[lib]
name = "trust_dns"
path = "src/lib.rs"
[[bin]]
name = "dnskey-to-pem"
required-features = ["openssl"]
path = "src/dnskey_to_pem.rs"
[dependencies]
backtrace = "^0.2.1"
chrono = "^0.4"
clap = "^2.23.3"
data-encoding = "^1.2.0"
env_logger = "0.4.2"
error-chain = "0.1.12"
futures = "^0.1.6"
lazy_static = "^0.2.1"
log = "^0.3.5"
openssl = { version = "^0.9.8", features = ["v102", "v110"], optional = true }
rand = "^0.3"
ring = { version = "^0.11", optional = true }
rustc-serialize = "^0.3.18"
time = "^0.1"
tokio-core = "^0.1"
tokio-io = "^0.1"
tokio-openssl = { version = "^0.1", optional = true }
untrusted = "^0.5"
[dev-dependencies]
openssl = { version = "^0.9.8", features = ["v102", "v110"], optional = false }