Merge rust-bitcoin/rust-bitcoin#1611: Instruct devs to use nightly for embedded

55d17f2c18 Instruct devs to use nightly for embedded (Tobin C. Harding)

Pull request description:

  The embedded test crate requires usage of the nightly toolchain, fix the docs to show this.

ACKs for top commit:
  apoelstra:
    ACK 55d17f2c18
  Kixunil:
    ACK 55d17f2c18

Tree-SHA512: 5d3d611ff4331d8475f77d260ebaa3da3ae71960b709eb4603056d7034885306b8bcc39be488f3391697d47a1074a695979fb50b6cb31af414f873da8e82bdbd
This commit is contained in:
Andrew Poelstra 2023-02-07 15:15:44 +00:00
commit a58460bc3c
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 2 additions and 2 deletions

View File

@ -4,13 +4,13 @@ To run the embedded test, first prepare your environment:
```shell ```shell
sudo ./scripts/install-deps sudo ./scripts/install-deps
rustup target add thumbv7m-none-eabi rustup +nightly target add thumbv7m-none-eabi
``` ```
Then: Then:
```shell ```shell
source ./scripts/env.sh && cargo run --target thumbv7m-none-eabi source ./scripts/env.sh && cargo +nightly run --target thumbv7m-none-eabi
``` ```
Output should be something like: Output should be something like: