diff --git a/book/docs/developers/common-issues.md b/book/docs/developers/common-issues.md index bebc72623..9f43521ca 100644 --- a/book/docs/developers/common-issues.md +++ b/book/docs/developers/common-issues.md @@ -5,7 +5,7 @@ If you are using a library that has an MSRV specified, you may encounter an error like this when building your program. ```txt -package `alloy v0.1.1 cannot be built because it requires rustc 1.76 or newer, while the currently active rustc version is 1.75.0-nightly` +package `alloy cannot be built because it requires rustc 1.83 or newer, while the currently active rustc version is 1.81.0` ``` This is due to the fact that your current Succinct Rust toolchain has been built with a lower version than the MSRV of the crates you are using. @@ -18,9 +18,9 @@ You can check the version of your local Succinct Rust toolchain by running `carg cargo 1.81.0-dev (2dbb1af80 2024-08-20) ``` -A Succinct Rust toolchain with version **1.81** should work for all crates that have an MSRV of **1.81** or lower. +A Succinct Rust toolchain with version **1.82** should work for all crates that have an MSRV of **1.82** or lower. -If the MSRV of your crate is higher than **1.81**, try the following: +If the MSRV of your crate is higher than **1.82**, try the following: - If using `cargo prove build` directly, pass the `--ignore-rust-version` flag: