Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 40 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ differ:
- Typed status-code response enums instead of response structs.
- Token-based generation (`quote`/`syn`), not user-overridable `text/template`.
- Blocking `reqwest` client — no async runtime forced on consumers.
- Reuses your `oapi-codegen` YAML config — unknown keys are ignored.
- Reuses your `oapi-codegen` YAML config — unknown keys produce warnings and are ignored.
- Explicit over implicit: `--config-file` is required, and an output path must be given via `--output-file` or the
config's `output:` key; empty generation fails loudly (Go defaults these and prints to stdout).
- Fails fast where Go assumes: where `oapi-codegen` silently defaults, guesses, or ignores an ambiguity, this generator
Expand Down
4 changes: 2 additions & 2 deletions crates/oapi-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ workspace = true
anstream = "1.0.0"
clap = { version = "4.6.6", features = ["derive"] }
http = "1.5.0"
indexmap = "2.14.1"
indexmap = "2.14.2"
openapiv3 = "2.2.0"
owo-colors = "4.4.0"
prettyplease = "0.3.0"
Expand All @@ -40,7 +40,7 @@ regex = { version = "1.13.1", default-features = false, features = ["std", "perf
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
serde_yaml = "0.9.34"
syn = { version = "3.0.4", features = ["full"] }
syn = { version = "3.0.5", features = ["full"] }

[dev-dependencies]
axum = { version = "0.8.9", features = ["multipart"] }
Expand Down
Loading
Loading