Skip to content
Merged
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
49 changes: 25 additions & 24 deletions .github/workflows/starknet-blocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,27 +112,28 @@ jobs:
path: starknet-replay/cache
key: ${{ steps.restore-rpc-calls.outputs.cache-primary-key }}

compare-dumps:
name: Compare Dumps
needs: [run-blocks]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Fetch Native dumps
uses: actions/download-artifact@v4
with:
pattern: dump-*-native
path: state_dumps/native
merge-multiple: true
continue-on-error: true
- name: Fetch VM dumps
uses: actions/download-artifact@v4
with:
pattern: dump-*-vm
path: state_dumps/vm
merge-multiple: true
continue-on-error: true

- name: Compare states
run: python ./scripts/cmp_state_dumps.py
# Temporarily disabled for the 0.9.0-rc.7 release.
# compare-dumps:
# name: Compare Dumps
# needs: [run-blocks]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - name: Fetch Native dumps
# uses: actions/download-artifact@v4
# with:
# pattern: dump-*-native
# path: state_dumps/native
# merge-multiple: true
# continue-on-error: true
# - name: Fetch VM dumps
# uses: actions/download-artifact@v4
# with:
# pattern: dump-*-vm
# path: state_dumps/vm
# merge-multiple: true
# continue-on-error: true
#
# - name: Compare states
# run: python ./scripts/cmp_state_dumps.py
10 changes: 5 additions & 5 deletions Cargo.lock

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

15 changes: 11 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [
]

[workspace.package]
version = "0.9.0-rc.6"
version = "0.9.0-rc.7"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/starkware-libs/cairo_native"
Expand Down Expand Up @@ -52,7 +52,7 @@ cairo-lang-test-plugin = "~2.19.0-rc.0"
cairo-lang-test-runner = "~2.19.0-rc.0"
cairo-lang-utils = "~2.19.0-rc.0"
cairo-native-bin-utils.path = "binaries/cairo-native-bin-utils"
cairo-native = { path = ".", version = "0.9.0-rc.6" }
cairo-native = { path = ".", version = "0.9.0-rc.7" }
clap = "4.5.23"
colored = "2.1.0"
criterion = "0.5.1"
Expand Down Expand Up @@ -81,7 +81,7 @@ sec1 = "0.7.3"
serde = "1.0.0"
serde_json = "1.0.128"
sha2 = "0.10.8"
sierra-emu = { path = "debug_utils/sierra-emu", version = "0.9.0-rc.6" }
sierra-emu = { path = "debug_utils/sierra-emu", version = "0.9.0-rc.7" }
smallvec = "1.13.2"
starknet-crypto = "0.8.1"
starknet-curve = "0.6.0"
Expand All @@ -106,7 +106,14 @@ description = "A compiler to convert Cairo's IR Sierra code to MLIR and execute
readme = "README.md"
keywords = ["starknet", "cairo", "compiler", "mlir"]
categories = ["compilers"]
exclude = ["vendor/"]
exclude = [
"vendor/",
"corelib",
"test_data/tests/corelib",
"test_data/programs/corelib",
"test_data/tests_starknet/bug_samples",
"test_data/tests_starknet/cairo_level_tests",
]
version.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ often so use it at your own risk. 🚧

For versions under `1.0` `cargo` doesn't comply with
[semver](https://semver.org/), so we advise to pin the version you
use. This can be done by adding `cairo-native = "0.9.0-rc.6"` to your Cargo.toml
use. This can be done by adding `cairo-native = "0.9.0-rc.7"` to your Cargo.toml

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion debug_utils/casm-data-flow/Cargo.lock

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

2 changes: 1 addition & 1 deletion debug_utils/casm-data-flow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "casm-data-flow"
version = "0.9.0-rc.6"
version = "0.9.0-rc.7"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/starkware-libs/cairo_native"
Expand Down
1 change: 1 addition & 0 deletions debug_utils/sierra-emu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "sierra-emu"
description = "A Cairo (Sierra) Virtual Machine."
readme = "README.md"
keywords = ["starknet", "cairo", "vm", "sierra"]
exclude = ["corelib"]
version.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading