| Crates.io | rustapi-openapi |
| lib.rs | rustapi-openapi |
| version | 0.1.207 |
| created_at | 2025-12-30 14:49:59.356105+00 |
| updated_at | 2026-01-26 00:02:11.336988+00 |
| description | Automated OpenAPI 3.0 specification generator for RustAPI. Integrates Swagger UI. |
| homepage | https://github.com/Tuntii/RustAPI |
| repository | https://github.com/Tuntii/RustAPI |
| max_upload_size | |
| id | 2012758 |
| size | 1,950,978 |
Automated API specifications and Swagger UI integration.
ℹ️ Note: This crate is used internally by
rustapi-rsto provide the.docs()method on the server builder.
utoipa to generate JSON Schemas for your Rust structs.You can inject custom security schemes or info into the spec via the RustApi builder.
RustApi::new()
.api_name("My Enterprise API")
.api_version("2.1.0")
.docs("/swagger-ui")
.run("0.0.0.0:3000")
.await