Upgrade sp1 to 5.2.1 (#108)

This commit is contained in:
Paul
2025-09-03 17:49:20 +08:00
committed by GitHub
parent 6a1855c7af
commit e4b1ccca54
4 changed files with 1176 additions and 83 deletions

1253
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -77,7 +77,7 @@ risc0-zkvm = { version = "3.0.1", default-features = false }
risc0-binfmt = { version = "3.0.1", default-features = false }
# SP1 dependencies
sp1-sdk = "5.1.0"
sp1-sdk = "5.2.1"
# Local dependencies
zkvm-interface = { path = "crates/zkvm-interface" }

View File

@@ -10,7 +10,7 @@ COPY --chmod=+x scripts/sdk_installers/install_sp1_sdk.sh /tmp/install_sp1_sdk.s
# Define where SP1 SDK will be installed within the image.
# The install_sp1_sdk.sh script will respect these ENV variables.
ENV SP1_DIR="/root/.sp1" \
SP1_VERSION="v5.1.0"
SP1_VERSION="v5.2.1"
# Run the SP1 SDK installation script
# It will use the SP1_DIR and SP1_VERSION defined above.

View File

@@ -6,5 +6,5 @@ edition = "2021"
[workspace]
[dependencies]
sp1-zkvm = "5.1.0"
sp1-zkvm = "5.2.1"
test-utils = { path = "../../../crates/test-utils" }