-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump cairo compiler 2.7.0 (#130)
* chore: bump cairo compiler to 2.7.0 * fix: add building Cairo compiler to compile target * fix: update overflowing_sub from deprecated methods * feat: add a clean compilation artifacts target * refactor: move out of hints folder Cairo programs not using hints anymore * refactor: use array_append to test Cairo program parsing
- Loading branch information
Showing
10 changed files
with
20 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
use core::num::traits::OverflowingSub; | ||
|
||
fn main() -> (u32, bool) { | ||
10_u32.overflowing_sub(12) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
use core::num::traits::OverflowingSub; | ||
|
||
fn main() -> (u32, bool) { | ||
12_u32.overflowing_sub(10) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters