mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-19 00:03:30 +00:00
Replace typify-only type generation with progenitor, which generates both Rust types (in a `types` module) and a reqwest-based HTTP client from the OpenAPI spec. Also upgrades reqwest 0.12→0.13 and rmcp 0.15→1.3 to align dependency versions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
284 B
Rust
13 lines
284 B
Rust
#[allow(
|
|
clippy::absolute_paths,
|
|
clippy::all,
|
|
clippy::derivable_impls,
|
|
clippy::needless_lifetimes,
|
|
unreachable_pub,
|
|
unused_imports
|
|
)]
|
|
mod generated {
|
|
include!(concat!(env!("OUT_DIR"), "/codegen.rs"));
|
|
}
|
|
pub use generated::Client;
|
|
pub use generated::types;
|