cloud-sdk-reqwest 0.27.0

Optional provider-neutral reqwest transport boundary for cloud-sdk.
Documentation
//! Hardened provider-neutral asynchronous transport implementation.

mod body;
mod client;
mod config;
mod raw;

pub use crate::shared::{
    BearerToken, BearerTokenError, BuildError, CredentialStateError, CustomEndpointAcknowledgement,
    EndpointError, HttpsEndpoint, MAX_BEARER_TOKEN_BYTES, MAX_CONFIGURED_ENDPOINT_BYTES,
    MAX_RAW_REQUEST_BODY_BYTES, MAX_TIMEOUT_SECONDS, MAX_UPSTREAM_HTTP1_HEAD_BYTES,
    MAX_UPSTREAM_HTTP1_HEADERS, RawHttpError, RawTransportFailure, RequestTimeouts, TimeoutError,
    TokenRotationError, TransportError, UserAgent, UserAgentError,
};
pub use client::AsyncClient;
pub use config::{AsyncClientBuilder, RawAsyncClientBuilder};
pub use raw::RawAsyncClient;

#[cfg(test)]
mod tests;