Skip to content
Open
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
15 changes: 6 additions & 9 deletions Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,21 @@ dependencies = [

[[package]]
name = "dojo"
version = "1.7.1"
source = "registry+https://scarbs.xyz/"
checksum = "sha256:b792d9c526269f5265dd89f063da5db8daebb461f2dec2cdb712f420187b39a8"
version = "1.8.0"
source = "git+https://github.com/michalpalkowski/dojo?branch=feature%2Fsharding#2e545b40100320761f2a761e223dd04b7d752ec4"
dependencies = [
"dojo_cairo_macros",
]

[[package]]
name = "dojo_cairo_macros"
version = "1.7.1"
source = "registry+https://scarbs.xyz/"
checksum = "sha256:18059a9ac9ec2c0c708baad382728a99970b621b1eaab780fd9a8ec2dc975c98"
version = "1.8.0"
source = "git+https://github.com/michalpalkowski/dojo?branch=feature%2Fsharding#2e545b40100320761f2a761e223dd04b7d752ec4"

[[package]]
name = "dojo_cairo_test"
version = "1.7.1"
source = "registry+https://scarbs.xyz/"
checksum = "sha256:93fba9557e34d0aa0903092e8f32560b0ce72b66dceea2a51fd571b1217351e3"
version = "1.8.0"
source = "git+https://github.com/michalpalkowski/dojo?branch=feature%2Fsharding#2e545b40100320761f2a761e223dd04b7d752ec4"
dependencies = [
"dojo",
]
Expand Down
12 changes: 6 additions & 6 deletions Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@ members = [
]
description = "Dojo achievement library"
homepage = "https://github.com/cartridge-gg/arcade/"
cairo-version = "2.12.2"
cairo-version = "2.13.1"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Update pinned toolchain with Cairo 2.13 manifest bump

Setting cairo-version to 2.13.1 here makes the repo require a newer Cairo/Scarb toolchain, but CI is still pinned to scarb-version: "2.12.2" in .github/workflows/ci.yml (checked lines 30-33, 54-57, and 70-73), and local tooling is still pinned in .tool-versions. This mismatch will cause build/test jobs (and developers using the pinned tool versions) to fail on version resolution before compilation, so the toolchain pins need to be bumped in the same change.

Useful? React with 👍 / 👎.


[workspace.package]
version = "0.0.0"
edition = "2024_07"
cairo-version = "2.12.2"
cairo-version = "2.13.1"

[workspace.dependencies]
dojo = "1.7.1"
dojo_cairo_test = "1.7.1"
dojo = { git = "https://github.com/michalpalkowski/dojo", branch = "feature/sharding"}
dojo_cairo_test = { git = "https://github.com/michalpalkowski/dojo", branch = "feature/sharding" }
graffiti = { git = "https://github.com/bal7hazar/graffiti.git", rev = "e8b0854" }
openzeppelin_account = "1.0.0"
openzeppelin_token = "1.0.0"
openzeppelin_introspection = "1.0.0"
openzeppelin_access = "1.0.0"
openzeppelin_upgrades = "1.0.0"
starknet = "2.12.2"
cairo_test = "2.12.2"
starknet = "2.13.1"
cairo_test = "2.13.1"

[workspace.tool.fmt]
sort-module-level-items = true
Expand Down