aster_forge_http/lib.rs
1//! Product-neutral outbound HTTP client mechanics for Aster services.
2#![cfg_attr(
3 not(test),
4 deny(
5 clippy::unwrap_used,
6 clippy::unreachable,
7 clippy::expect_used,
8 clippy::panic,
9 clippy::unimplemented,
10 clippy::todo
11 )
12)]
13
14mod reqwest_client;
15mod response_body;
16
17pub use reqwest_client::{BufferedHttpError, execute_reqwest_buffered_limited};
18pub use response_body::read_reqwest_body_limited;