Skip to main content

cloud_sdk_reqwest/blocking/
mod.rs

1//! Hardened provider-neutral blocking transport implementation.
2
3mod body;
4mod client;
5mod config;
6
7pub use crate::shared::{
8    BearerToken, BearerTokenError, BuildError, CredentialStateError, CustomEndpointAcknowledgement,
9    EndpointError, HttpsEndpoint, MAX_BEARER_TOKEN_BYTES, MAX_CONFIGURED_ENDPOINT_BYTES,
10    MAX_TIMEOUT_SECONDS, RequestTimeouts, TimeoutError, TokenRotationError, TransportError,
11    UserAgent, UserAgentError,
12};
13pub use client::BlockingClient;
14pub use config::BlockingClientBuilder;
15#[cfg(feature = "blocking-rustls-fips")]
16pub use config::FipsTlsPolicy;
17
18#[cfg(test)]
19mod tests;
20#[cfg(all(
21    test,
22    feature = "blocking-rustls-webpki-roots",
23    not(feature = "blocking-rustls-fips")
24))]
25mod webpki_roots_tests;