Skip to main content

rescript_openapi/
lib.rs

1// SPDX-License-Identifier: PMPL-1.0-or-later
2// SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell
3
4//! rescript-openapi - Generate type-safe ReScript clients from OpenAPI specifications
5//!
6//! This library provides the core functionality for parsing OpenAPI specs
7//! and generating ReScript code including types, validators, and HTTP clients.
8
9#![forbid(unsafe_code)]
10pub mod codegen;
11pub mod ir;
12pub mod parser;