Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislearn committed Sep 10, 2024
1 parent 5e49195 commit 60b23b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/oapi-macros/src/schema_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ impl TryToTokens for Type<'_> {
}

#[cfg(not(feature="non-strict-integers"))]
"u64" => tokens.extend(quote! { #oapi:::oapi::SchemaFormat::KnownFormat(#oapi::oapi::KnownFormat::Int64) }),
"u64" => tokens.extend(quote! { #oapi::oapi::SchemaFormat::KnownFormat(#oapi::oapi::KnownFormat::Int64) }),

"i32" => tokens.extend(quote! { #oapi::oapi::SchemaFormat::KnownFormat(#oapi::oapi::KnownFormat::Int32) }),
"i64" => tokens.extend(quote! { #oapi::oapi::SchemaFormat::KnownFormat(#oapi::oapi::KnownFormat::Int64) }),
Expand Down

0 comments on commit 60b23b5

Please sign in to comment.