chore: upgrade zkvm versions (#281)

Co-authored-by: han0110 <tinghan0110@gmail.com>
This commit is contained in:
brech1
2026-02-02 06:21:30 -03:00
committed by GitHub
parent 6036794245
commit aaf2efcc78
18 changed files with 403 additions and 316 deletions

View File

@@ -28,13 +28,13 @@ ensure_tool_installed "rustup" "to manage Rust toolchains (though Jolt uses defa
ensure_tool_installed "git" "to install Jolt from a git repository"
ensure_tool_installed "cargo" "to build and install Rust packages"
JOLT_VERSION_TAG="v0.3.0-alpha"
JOLT_VERSION_TAG="6dcd401"
# Install Jolt CLI using cargo install with +nightly
# This installs the 'jolt' binary directly to $HOME/.cargo/bin
# The ere-base image should have a compatible default nightly toolchain.
echo "Installing Jolt CLI from GitHub repository (a16z/jolt)..."
cargo +nightly install --git https://github.com/a16z/jolt --force --bins jolt --tag "$JOLT_VERSION_TAG"
cargo +nightly install --git https://github.com/a16z/jolt --force --bins jolt --rev "$JOLT_VERSION_TAG"
# Install Jolt's toolchain
jolt install-toolchain

View File

@@ -28,7 +28,7 @@ ensure_tool_installed "rustup" "to manage Rust toolchains"
ensure_tool_installed "git" "to install cargo-openvm from a git repository"
ensure_tool_installed "cargo" "to build and install Rust packages"
OPENVM_CLI_VERSION_TAG="v1.4.2"
OPENVM_CLI_VERSION_TAG="v1.4.3"
# Install cargo-openvm using the specified toolchain and version tag
echo "Installing cargo-openvm (version ${OPENVM_CLI_VERSION_TAG}) from GitHub repository (openvm-org/openvm)..."