From abdc49312f4192076e544a780ed9c7a7d085555d Mon Sep 17 00:00:00 2001 From: Carlos Bordon Date: Thu, 19 Mar 2026 11:30:08 -0300 Subject: [PATCH] Added fixes proposed by copilot --- docs/INSTALLATION.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 1f1d7543..5523fdaa 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -19,7 +19,7 @@ Install tools: ```bash cargo install mdbook --version 0.5.2 cargo install mdbook-mermaid --version 0.17.0 -`` +``` Verify installation: @@ -82,10 +82,10 @@ failed to parse manifest ... feature `edition2024` is required The package requires the Cargo feature called `edition2024`, but that feature is not stabilized in this version of Cargo. ``` -This happens because one of mdBook's transitive dependencies has been updated to use Rust edition 2024, which is only -supported on nightly Rust toolchains. +This can happen when installing `mdbook` version 0.5.2 because one of its transitive dependencies has been updated to +use Rust edition 2024, which is only supported on nightly Rust toolchains. -To fix it install using nightly Rust: +To fix it, install the required `mdbook` version (0.5.2) using nightly Rust: ```sh rustup install nightly