cargo-openapi 0.2.0

A binary to handle generation of rust models & apis from OpenAPI v2, v3, and v3.1 specs working through cargo or on command line
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "cargo-openapi"
version = "0.2.0"
edition = "2021"
authors = ["MatrixSenpai <math.matrix@icloud.com>"]
description = "A binary to handle generation of rust models & apis from OpenAPI v2, v3, and v3.1 specs working through cargo or on command line"
license-file = "../LICENSE.md"

[dependencies]
sw4rm-rs = { path = "../core", version = "0.2.0" }
sw4rm-rs-generation = { path = "../generator", version = "0.2.0" }
log = "0.4"
pretty_env_logger = "0.5"
clap = { version = "4.5.1", features = ["derive"] }