mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-22 00:31:12 +00:00
Add the shared fabro-http transport crate and route hand-written HTTP client construction through it. Use FABRO_HTTP_PROXY_POLICY for test no-proxy defaults, remove direct reqwest deps from ordinary crates, and add clippy bans for raw reqwest entrypoints.
14 lines
329 B
Rust
14 lines
329 B
Rust
#[allow(
|
|
clippy::absolute_paths,
|
|
clippy::all,
|
|
clippy::derivable_impls,
|
|
clippy::disallowed_methods,
|
|
clippy::disallowed_types,
|
|
clippy::needless_lifetimes,
|
|
unreachable_pub,
|
|
unused_imports
|
|
)]
|
|
mod generated {
|
|
include!(concat!(env!("OUT_DIR"), "/codegen.rs"));
|
|
}
|
|
pub use generated::{Client, types};
|