Skip to content

Commit

Permalink
Enforce using cairo-lang-runner v2.8.5 and blockifier 0.8.0-rc.3 (#2293)
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechos committed Dec 2, 2024
1 parent 721fb59 commit b1bca98
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/find-smallest-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
script: |
const msrv = '${{ steps.rust-version.outputs.highest-msrv }}'
const previous_msrv = '1.80.1'
const previous_msrv = '1.81.0'
if (msrv != previous_msrv) {
github.rest.issues.createComment({
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ juno-cached:
@go build $(GO_TAGS) -ldflags="-X main.Version=$(shell git describe --tags)" -o build/juno ./cmd/juno/


MINIMUM_RUST_VERSION = 1.80.1
MINIMUM_RUST_VERSION = 1.81.0
CURR_RUST_VERSION = $(shell rustc --version | grep -o '[0-9.]\+' | head -n1)
check-rust: ## Ensure rust version is greater than minimum
@echo "Checking if current rust version >= $(MINIMUM_RUST_VERSION)"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

- Golang 1.23 or higher is required to build and run the project. You can find the installer on
the official Golang [download](https://go.dev/doc/install) page.
- [Rust](https://www.rust-lang.org/tools/install) 1.80.1 or higher.
- [Rust](https://www.rust-lang.org/tools/install) 1.81.0 or higher.
- A C compiler: `gcc` or `clang`.
- Install `jemalloc` and `pkg-config` on your system:

Expand Down
3 changes: 2 additions & 1 deletion vm/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ edition = "2021"
[dependencies]
serde = "1.0.208"
serde_json = { version = "1.0.125", features = ["raw_value"] }
blockifier = "0.8.0-rc.3"
blockifier = "=0.8.0-rc.3"
cairo-lang-runner = { version = "=2.8.5" }
starknet_api = "0.13.0-rc.1"
cairo-vm = "=1.0.1"
starknet-types-core = { version = "0.1.5", features = ["hash", "prime-bigint"] }
Expand Down

0 comments on commit b1bca98

Please sign in to comment.