Skip to content

Commit

Permalink
docs: Update README with Rust installation instructions (#3914)
Browse files Browse the repository at this point in the history
* Update README.md

* Update README.md

* Update README.md

---------

Co-authored-by: Severin Siffert <severin.siffert@dfinity.org>
  • Loading branch information
jessiemongeon1 and sesi200 authored Sep 12, 2024
1 parent 0d20508 commit 3e87576
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,24 @@ but typically are used as part of the whole `IC SDK`.

## Getting Started

### Prerequisites

#### Install Rust

To develop Rust projects, you will need to install Rust in your environment with the command:

```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```

#### Install `wasm32-unknown-unknown` target

ICP smart contracts are compiled into WebAssembly modules. To support this compilation, install the `wasm32-unknown-unknown` target:

```
rustup target add wasm32-unknown-unknown
```

### Installing

You can install the `IC SDK` a few different ways.
Expand Down

0 comments on commit 3e87576

Please sign in to comment.