trust_dns_https/
lib.rs

1// Copyright 2015-2018 Benjamin Fry <benjaminfry@me.com>
2//
3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
4// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// http://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7
8//! TLS protocol related components for DNS over TLS
9
10// LIBRARY WARNINGS
11#![warn(
12    clippy::dbg_macro,
13    clippy::print_stdout,
14    clippy::unimplemented,
15    clippy::use_self,
16    missing_copy_implementations,
17    missing_docs,
18    non_snake_case,
19    non_upper_case_globals,
20    rust_2018_idioms,
21    unreachable_pub
22)]
23#![allow(clippy::single_component_path_imports)]
24
25//! Deprecated and removed as of 0.21.0, see the dns-over-https-rustls feature in `trust-dns-proto`
26
27#![deprecated = "moved to trust_dns_proto::https"]
28
29pub use trust_dns_proto::https::*;