rescript-openapi 0.1.0

Generate type-safe ReScript clients from OpenAPI specifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: PMPL-1.0-or-later
// SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell

//! rescript-openapi - Generate type-safe ReScript clients from OpenAPI specifications
//!
//! This library provides the core functionality for parsing OpenAPI specs
//! and generating ReScript code including types, validators, and HTTP clients.

#![forbid(unsafe_code)]
pub mod codegen;
pub mod ir;
pub mod parser;