trust_dns_openssl/
lib.rs

1// Copyright 2015-2021 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// LIBRARY WARNINGS
9#![warn(
10    clippy::dbg_macro,
11    clippy::print_stdout,
12    clippy::unimplemented,
13    clippy::use_self,
14    missing_copy_implementations,
15    missing_docs,
16    non_snake_case,
17    non_upper_case_globals,
18    rust_2018_idioms,
19    unreachable_pub
20)]
21
22//! Deprecated and moved to trust_dns_proto::openssl
23
24#![deprecated = "moved to trust_dns_proto::openssl"]
25
26pub use trust_dns_proto::openssl::*;