better-fetch 0.5.0

Typed HTTP client layer on top of reqwest — inspired by @better-fetch/fetch
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! OpenAPI 3.0 document builder (requires `openapi` feature).
//!
//! Builds a spec from [`SchemaRegistry`](crate::schema::SchemaRegistry) including
//! `components.schemas`, request bodies, response content, and parameters.

mod builder;
mod convert;
mod document;

pub use builder::OpenApiBuilder;
pub use document::{
    OpenApiComponents, OpenApiDocument, OpenApiInfo, OpenApiMediaType, OpenApiOperation,
    OpenApiParameter, OpenApiRequestBody, OpenApiResponse, OpenApiResponses, OpenApiSchemaRef,
    OpenApiServer,
};