[build-dependencies.tera]
default-features = false
version = "1.12.1"
[dependencies.arrayvec]
version = "0.7.1"
[dependencies.async-std]
optional = true
version = "^1"
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.rand]
version = "0.8.4"
[dependencies.smol]
optional = true
version = "^1"
[dependencies.smol-timeout]
optional = true
version = "0.6.0"
[dependencies.thiserror]
version = "1.0.26"
[dependencies.tokio]
default-features = false
features = ["rt", "net", "time", "io-util"]
optional = true
version = "^1"
[features]
default = []
net-async-std = ["async-std"]
net-smol = ["smol", "smol-timeout"]
net-std = []
net-tokio = ["tokio"]
[package]
authors = ["Rafael Buchbinder <rafi@rbk.io>"]
categories = ["asynchronous", "network-programming", "parser-implementations"]
description = "DNS Client Library"
edition = "2018"
keywords = ["dns", "async", "resolver", "dig"]
license = "MIT OR Apache-2.0"
name = "rsdns"
repository = "https://github.com/r-bk/rsdns"
resolver = "2"
version = "0.4.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[target."cfg(target_os = \"linux\")".dependencies.socket2]
features = ["all"]
optional = true
version = "0.4.1"