Skip to content

Commit

Permalink
change order of schemafy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
artifex11 committed Aug 27, 2023
1 parent 42f384b commit 3e864e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ fn main() {
// some limitations of schemafy will not allow it to parse the correct
// integer type as they incorrectly fallback any integer to `i64`
let contents = contents.replace("Vec<i64>", "Vec<u8>");
let contents = contents.replace("Vec<u64>", "Vec<u8>");
let contents = contents.replace("i64", "u64");
let contents = contents.replace("Vec<u64>", "Vec<u8>");

let header = r#"// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down

0 comments on commit 3e864e3

Please sign in to comment.