Skip to content

Commit

Permalink
feat(blockifier): activate the jemmalloc feature cross repo part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ArniStarkware committed Jan 30, 2025
1 parent 1d9ae96 commit bd23392
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/starknet_consensus_orchestrator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Implements the consensus context and orchestrates the node's comp
assert_matches.workspace = true
async-trait.workspace = true
cairo-lang-starknet-classes.workspace = true
blockifier.workspace = true
blockifier = { workspace = true, features = ["jemalloc"] }
chrono.workspace = true
futures.workspace = true
indexmap.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/starknet_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ testing = []
[dependencies]
async-trait.workspace = true
axum.workspace = true
blockifier = { workspace = true, features = ["testing"] }
blockifier = { workspace = true, features = ["jemalloc", "testing"] }
cairo-lang-starknet-classes.workspace = true
futures.workspace = true
mempool_test_utils.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/starknet_http_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ tracing.workspace = true
validator.workspace = true

[dev-dependencies]
blockifier = { path = "../blockifier", features = ["testing"] }
blockifier = { path = "../blockifier", features = ["jemalloc", "testing"] }
futures.workspace = true
mempool_test_utils.path = "../mempool_test_utils"
metrics.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/starknet_integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ workspace = true
[dependencies]
assert_matches.workspace = true
axum.workspace = true
blockifier.workspace = true
blockifier = { workspace = true, features = ["jemalloc"] }
cairo-lang-starknet-classes.workspace = true
futures.workspace = true
indexmap.workspace = true
Expand Down

0 comments on commit bd23392

Please sign in to comment.