[package]
name = "trust-dns-proto"
version = "0.7.4"
edition = "2018"
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"]
serde-config = ["serde"]
mdns = ["socket2/reuseport"]
[lib]
name = "trust_dns_proto"
path = "src/lib.rs"
[dependencies]
byteorder = "^1.2"
data-encoding = { version = "2.1.0", optional = true }
enum-as-inner = "0.2"
failure = "0.1"
futures = "^0.1.27"
idna = "^0.1.4"
lazy_static = "^1.0"
log = "^0.4.1"
openssl = { version = "^0.10", features = ["v102", "v110"], optional = true }
rand = "0.6"
ring = { version = "0.14", optional = true }
serde = { version = "1.0", optional = true }
smallvec = "^0.6"
socket2 = { version = "^0.3.9" }
tokio-executor = "0.1.7"
tokio-io = "^0.1"
tokio-reactor = "^0.1"
tokio-tcp = "^0.1"
tokio-timer = "0.2.10"
tokio-udp = "^0.1"
untrusted = { version = "^0.6", optional = true }
url = "1.6.0"
[dev-dependencies]
env_logger = "^0.6"
tokio = "^0.1.15"