From 103eebc956f48795eff577012cb7253d71c08716 Mon Sep 17 00:00:00 2001 From: Denys Zadorozhnyi Date: Wed, 24 Jul 2024 15:08:37 +0300 Subject: [PATCH] chore: add nightly rustc requirement to cargo-miden README.md --- tools/cargo-miden/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/cargo-miden/README.md b/tools/cargo-miden/README.md index 3d0f6961d..ff37398e2 100644 --- a/tools/cargo-miden/README.md +++ b/tools/cargo-miden/README.md @@ -4,10 +4,16 @@ This crate provides a cargo extension that allows you to compile Rust code to Mi ## Installation +In order to install(build) the extension, you need to have the nightly Rust toolchain installed: + +```bash +rustup toolchain install nightly-2024-03-10 +``` + To install the extension, run: ```bash -cargo install cargo-miden +cargo +nightly-2024-03-10 install cargo-miden ``` ## Usage