Skip to content

Commit a1af0a6

Browse files
Merge pull request #789 from multiversx/development
Development into main
2 parents 5b1d1ac + 6f8180c commit a1af0a6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/developers/meta/sc-meta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can find it on [crates.io](https://crates.io/crates/multiversx-sc-meta) [![c
1616
To install it, simply call
1717

1818
```
19-
cargo install multiversx-sc-meta
19+
cargo install multiversx-sc-meta --locked
2020
```
2121

2222
After that, try calling `sc-meta help` or `sc-meta -h` to see the CLI docs.

docs/sdk-and-tools/sdk-py/configuring-mxpy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ In order to view the current configuration, one can issue the command `mxpy conf
3232
One can alter the current configuration using the command `mxpy config set`. For example, in order to set the **_rust version_** to be used, one would do the following:
3333

3434
```
35-
$ mxpy config set dependencies.rust.tag nightly-2023-05-26
35+
$ mxpy config set dependencies.rust.tag nightly-2023-12-11
3636
```

docs/sdk-and-tools/troubleshooting/rust-setup.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ Then, choose **Proceed with installation (default)**.
7878
Once Rust is installed, switch to a nightly version and install the `wasm32-unknown-unknown` target:
7979

8080
```bash
81-
rustup default nightly-2023-05-26
81+
rustup default nightly-2023-12-11
8282
rustup target add wasm32-unknown-unknown
8383
```
8484

8585
Afterwards, install `sc-meta`:
8686

8787
```bash
88-
cargo install multiversx-sc-meta
88+
cargo install multiversx-sc-meta --locked
8989
```
9090

9191
Optionally, you may also want to install `wasm-opt` and `twiggy`:
@@ -104,9 +104,9 @@ For CI / CD, use the following:
104104
```bash
105105
wget -O rustup.sh https://sh.rustup.rs && \
106106
chmod +x rustup.sh && \
107-
./rustup.sh --verbose --default-toolchain nightly-2023-05-26 --target wasm32-unknown-unknown -y
107+
./rustup.sh --verbose --default-toolchain nightly-2023-12-11 --target wasm32-unknown-unknown -y
108108

109-
cargo install multiversx-sc-meta
109+
cargo install multiversx-sc-meta --locked
110110
```
111111

112112
[comment]: # (mx-context-auto)
@@ -131,7 +131,7 @@ installed toolchains
131131
--------------------
132132
133133
[...]
134-
nightly-2023-05-26-x86_64-unknown-linux-gnu (default)
134+
nightly-2023-12-11-x86_64-unknown-linux-gnu (default)
135135
136136
installed targets for active toolchain
137137
--------------------------------------
@@ -144,19 +144,19 @@ active toolchain
144144
----------------
145145
146146
[...]
147-
nightly-2023-05-26-x86_64-unknown-linux-gnu (default)
147+
nightly-2023-12-11-x86_64-unknown-linux-gnu (default)
148148
```
149149

150150
You can also check the status of your Rust installation using `mxpy`:
151151

152152
```
153153
$ mxpy deps check rust
154154
155-
INFO cli.deps: Checking dependency: module = rust, tag = nightly-2023-05-26
155+
INFO cli.deps: Checking dependency: module = rust, tag = nightly-2023-12-11
156156
INFO modules: which rustc: /home/ubuntu/.cargo/bin/rustc
157157
INFO modules: which cargo: /home/ubuntu/.cargo/bin/cargo
158158
INFO modules: which sc-meta: /home/ubuntu/.cargo/bin/sc-meta
159159
INFO modules: which wasm-opt: /home/ubuntu/.cargo/bin/wasm-opt
160160
INFO modules: which twiggy: /home/ubuntu/.cargo/bin/twiggy
161-
INFO cli.deps: [rust nightly-2023-05-26] is installed.
161+
INFO cli.deps: [rust nightly-2023-12-11] is installed.
162162
```

0 commit comments

Comments
 (0)