From 9689ab1a65bb1b7d7c7bb437ddbe5212ad8db795 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Mon, 25 Nov 2024 17:22:14 +0200 Subject: [PATCH] docs: install rust 1.7.9 as required by packages (https://github.com/codex-storage/nim-codex/pull/996) (#54) --- learn/build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/learn/build.md b/learn/build.md index 1e4fec2..fa5f538 100644 --- a/learn/build.md +++ b/learn/build.md @@ -24,7 +24,7 @@ Other approaches may be viable. On macOS, some users may prefer [MacPorts](https ### Rust -The current implementation of Codex's zero-knowledge proving circuit requires the installation of rust v1.76.0 or greater. Be sure to install it for your OS and add it to your terminal's path such that the command `cargo --version` gives a compatible version. +The current implementation of Codex's zero-knowledge proving circuit requires the installation of rust v1.79.0 or greater. Be sure to install it for your OS and add it to your terminal's path such that the command `cargo --version` gives a compatible version. ### Linux @@ -50,7 +50,7 @@ dnf install @development-tools cmake gcc-c++ rust cargo In case your distribution does not provide required Rust version, we may install it using [rustup](https://www.rust-lang.org/tools/install) ```shell -curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs/ | sh -s -- --default-toolchain=1.76.0 -y +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs/ | sh -s -- --default-toolchain=1.79.0 -y . "$HOME/.cargo/env" ```