Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing dependency and updated cargo version #104

Merged
merged 3 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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