Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/upload_artifacts_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Upload-Artifacts
on:
push:
branches:
- main
- omri/temp-branch

jobs:
artifacts-push:
Expand Down
191 changes: 157 additions & 34 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ cairo-lang-execute-utils = "2.19.0-rc.0"
cairo-lang-utils = "2.19.0-rc.0"

# stwo cairo
cairo-air = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "a837f0eaa40db776f39f2677885d7059ced867ba" }
stwo-cairo-utils = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "a837f0eaa40db776f39f2677885d7059ced867ba" }
stwo-cairo-adapter = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "a837f0eaa40db776f39f2677885d7059ced867ba" }
stwo-cairo-prover = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "a837f0eaa40db776f39f2677885d7059ced867ba" }
stwo-cairo-serialize = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "a837f0eaa40db776f39f2677885d7059ced867ba" }
stwo-cairo-common = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "a837f0eaa40db776f39f2677885d7059ced867ba" }
cairo-air = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "9b93cc39" }
stwo-cairo-utils = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "9b93cc39" }
stwo-cairo-adapter = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "9b93cc39" }
stwo-cairo-prover = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "9b93cc39" }
stwo-cairo-serialize = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "9b93cc39" }
stwo-cairo-common = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "9b93cc39" }

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Split stwo-cairo git revisions

Medium Severity

Workspace stwo-cairo pins move to 9b93cc39, but privacy-prove and privacy-circuit-verify still depend on a837f0e, so stwo-run-and-prove artifacts and the privacy proving stack no longer share the same Cairo/STWO revision.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 53a5647. Configure here.



# local crates
Expand Down
Loading