Resolve hostnames by sending DNS queries over HTTPS.
It uses dns.google.com
to send the base64-encoded DNS query over HTTPS.
Based on https://tools.ietf.org/html/draft-ietf-doh-dns-over-https-02.
(A newer version of the draft is available, but the used server supports only version 2 for now)
dns.google.com
server. This is not configurable at the moment.
let addr = dnsoverhttps::resolve_host("example.com");
dnsoverhttps
comes with a small CLI utility providing host
functionality to resolve hostnames:
$ host
example.com has address 2606:2800:220:1:248:1893:25c8:1946
example.com has address 93.184.216.34
To install:
cargo install dnsoverhttps
MIT. See LICENSE.