-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(blockifier_test_utils): move RunnableCairo1 from blockifier::test_utils and update dependencies #3969
feat(blockifier_test_utils): move RunnableCairo1 from blockifier::test_utils and update dependencies #3969
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 44 of 44 files at r1, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @AvivYossef-starkware and @rotem-starkware)
crates/blockifier_test_utils/Cargo.toml
line 10 at r1 (raw file):
[features] cairo_native = []
the blockifier Cargo.toml needs to be updated: if it's cairo_native feature is active, then the blockifier_test_utils cairo_native feature also needs to beactive
Code quote:
[features]
cairo_native = []
653fa02
to
2db9ddb
Compare
72790f9
to
7556abb
Compare
Previously, dorimedini-starkware wrote…
Done. |
3103892
to
2dc9eff
Compare
Benchmark movements: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 5 of 5 files at r2, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @AvivYossef-starkware)
2dc9eff
to
9d7c4fa
Compare
7556abb
to
8fe844b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 22 of 22 files at r3, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @AvivYossef-starkware)
9d7c4fa
to
902ddee
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 7 of 7 files at r4, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @AvivYossef-starkware)
902ddee
to
6210c9f
Compare
8fe844b
to
952a81a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 5 of 5 files at r5, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @AvivYossef-starkware)
crates/starknet_gateway/Cargo.toml
line 17 at r5 (raw file):
async-trait.workspace = true axum.workspace = true blockifier = { workspace = true, optional = true }
the gateway doesn't need the blockifier at all, unless the testing feature is active?
seems strange to me...
can you try running cargo build -p starknet_gateway
and see that it compiles?
you may need to drop the optional = true
here
Code quote:
blockifier = { workspace = true, optional = true }
…t_utils and update dependencies
6210c9f
to
97fb391
Compare
Previously, dorimedini-starkware wrote…
your'e right, I fixed it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r6, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @AvivYossef-starkware)
No description provided.