fabro/lib/crates/fabro-api/src/lib.rs
Bryan Helmkamp a02148aacd
Rename fabro-api-types to fabro-api with progenitor client generation
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>
2026-04-03 11:17:27 -07:00

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;