oasgen-core 0.24.0

Dependency of oasgen. Generates OpenAPI 3.0 spec based on Rust code. Works with actix-web, but architected to easily extend to other frameworks (or no framework).
Documentation
set dotenv-load := true
set positional-arguments

help:
    @just --list --unsorted

build:
    cargo build
alias b := build

test *ARGS:
    cargo test "$@"

check:
    cargo check
alias c := check

fix:
    cargo clippy --fix