Skip to content

Commit

Permalink
ci: add Miri type length limit
Browse files Browse the repository at this point in the history
  • Loading branch information
m4tx committed Jul 10, 2024
1 parent 175c37a commit 74c449a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions flareon-orm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![type_length_limit = "21837534"]

pub fn add(left: u64, right: u64) -> u64 {
left + right
}
Expand Down
2 changes: 2 additions & 0 deletions flareon/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![type_length_limit = "21837534"]

pub fn add(left: u64, right: u64) -> u64 {
left + right
}
Expand Down

0 comments on commit 74c449a

Please sign in to comment.