aws_smithy_dns/lib.rs
1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/* Automatically managed default lints */
7#![cfg_attr(docsrs, feature(doc_auto_cfg))]
8/* End of automatically managed default lints */
9
10//! Built-in DNS resolver implementations for smithy-rs clients.
11
12#[cfg(all(feature = "hickory-dns", not(target_family = "wasm")))]
13mod hickory;
14
15#[cfg(all(feature = "hickory-dns", not(target_family = "wasm")))]
16pub use hickory::HickoryDnsResolver;