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, EndpointError, HttpsEndpoint,
9    MAX_BEARER_TOKEN_BYTES, MAX_TIMEOUT_SECONDS, RequestTimeouts, TimeoutError, TransportError,
10    UserAgent, UserAgentError,
11};
12pub use client::BlockingClient;
13pub use config::BlockingClientBuilder;
14#[cfg(feature = "blocking-rustls-fips")]
15pub use config::FipsTlsPolicy;
16
17#[cfg(test)]
18mod tests;
19#[cfg(all(
20    test,
21    feature = "blocking-rustls-webpki-roots",
22    not(feature = "blocking-rustls-fips")
23))]
24mod webpki_roots_tests;