Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Jan 15, 2025
1 parent 4385ddb commit f8220de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions book/docs/developers/common-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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:

Expand Down

0 comments on commit f8220de

Please sign in to comment.