// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! TLS configuration for HTTP clients.
//!
//! All TLS types are defined in the [`fetch_tls`] crate and re-exported here so
//! that `fetch` callers can configure TLS without depending on `fetch_tls`
//! directly. The concrete backend is selected by the enabled Cargo features
//! (`rustls` and/or `native-tls`), which `fetch` forwards to `fetch_tls`.
pub use NativeTlsOptions;
pub use RustlsOptions;
pub use ;