Skip to content

Commit

Permalink
Merge pull request #104 from bindsi/main
Browse files Browse the repository at this point in the history
Added missing dependency and updated cargo version
  • Loading branch information
kate-goldenring committed Nov 16, 2023
2 parents 205f9ff + 1207064 commit 210bbf2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions docs/development/development-walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ import (
"net/http"
"time"
"strings"
"html"
)

const (
Expand Down
14 changes: 7 additions & 7 deletions docs/development/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ The majority of Akri is written in Rust. To install Rust and Akri's component's
```sh
./build/setup.sh
```
If you previously installed Rust ensure you are using the v1.68.1 toolchain that Akri's build system uses:
If you previously installed Rust ensure you are using the v1.73.0 toolchain that Akri's build system uses:
```sh
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.68.1
rustup default 1.68.1
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.73.0
rustup default 1.73.0
cargo version
```

Expand All @@ -39,14 +39,14 @@ cargo version
./build/setup.sh
```

If you previously installed Rust, ensure you are using the v1.68.1 toolchain that Akri's build system uses:
If you previously installed Rust, ensure you are using the v1.73.0 toolchain that Akri's build system uses:
```sh
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.68.1
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.73.0
```
Then, configure your current shell to see Cargo and set `v1.68.1` as default toolchain.
Then, configure your current shell to see Cargo and set `v1.73.0` as default toolchain.
```sh
source $HOME/.cargo/env
rustup default 1.68.1
rustup default 1.73.0
cargo version
```
Expand Down

0 comments on commit 210bbf2

Please sign in to comment.