Skip to content

Commit

Permalink
chore(cairo_native): grow the stack to handle overflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoni-Starkware committed Dec 9, 2024
1 parent 3893430 commit d7454d6
Show file tree
Hide file tree
Showing 9 changed files with 9,419 additions and 8,383 deletions.
23 changes: 23 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ serde_yaml = "0.9.16"
sha2 = "0.10.8"
sha3 = "0.10.8"
simple_logger = "4.0.0"
stacker = "0.1.17"
starknet-core = "0.6.0"
starknet-crypto = "0.7.1"
starknet-types-core = "0.1.6"
Expand Down
3 changes: 2 additions & 1 deletion crates/blockifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "The transaction-executing component in the Starknet sequencer."
workspace = true

[features]
cairo_native = ["dep:cairo-native", "starknet_sierra_compile/cairo_native"]
cairo_native = ["dep:cairo-native", "dep:stacker", "starknet_sierra_compile/cairo_native"]
jemalloc = ["dep:tikv-jemallocator"]
reexecution = ["transaction_serde"]
testing = ["rand", "rstest", "starknet_api/testing"]
Expand Down Expand Up @@ -49,6 +49,7 @@ semver.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
sha2.workspace = true
stacker = { workspace = true, optional = true }
starknet-types-core.workspace = true
starknet_api.workspace = true
starknet_sierra_compile = { workspace = true, optional = true }
Expand Down
Loading

0 comments on commit d7454d6

Please sign in to comment.