You can notcie that even if I have deactivated rustc nightly:
:~/multiversx/smart_contracts/crowdfunding$ rustc -V rustc 1.70.0 (90c541806 2023-05-31),
The output displaysrustc 1.72.0-nightly (839e9a6e1 2023-07-02)
I tried to install the nightly version for rustc, but it doesn't work:
:~/multiversx/smart_contracts/crowdfunding$ rustc --explain E0554
Feature attributes are only allowed on the nightly release channel. Stable or
beta compilers will not comply.
Erroneous code example:
``
#![feature(lang_items)] // error: `#![feature]` may not be used on the
// stable release channel
``
If you need the feature, make sure to use a nightly release of the compiler
(but be warned that the feature may be removed or altered in the future).
Hi, a bit new in MultiversX building. Using WSL2 on Windows All this tools are new for me. I am following the Crowdfunding tutorial (https://docs.multiversx.com/developers/tutorials/crowdfunding-p1/). When it comes to build the contract, I get the issue:
You can notcie that even if I have deactivated rustc nightly:
:~/multiversx/smart_contracts/crowdfunding$ rustc -V rustc 1.70.0 (90c541806 2023-05-31)
, The output displaysrustc 1.72.0-nightly (839e9a6e1 2023-07-02)
I tried to install the nightly version for rustc, but it doesn't work:
:~/multiversx/smart_contracts/crowdfunding$ rustc --explain E0554
Do you have any idea to help me? Thanks a lot