Skip to content

Commit

Permalink
update rust toolchain to latest 1.62.0
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 committed Aug 5, 2022
1 parent a0da2a9 commit 0bcbee6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion interactive_engine/executor/ir/core/rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# The default profile includes rustc, rust-std, cargo, rust-docs, rustfmt and clippy.
# https://rust-lang.github.io/rustup/concepts/profiles.html
profile = "default"
channel = "1.60.0"
channel = "1.62.0"
2 changes: 1 addition & 1 deletion interactive_engine/executor/rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# The default profile includes rustc, rust-std, cargo, rust-docs, rustfmt and clippy.
# https://rust-lang.github.io/rustup/concepts/profiles.html
profile = "default"
channel = "1.60.0"
channel = "1.62.0"
6 changes: 3 additions & 3 deletions scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ install_dependencies() {
if [[ "${packages_to_install[*]}" =~ "rust" ]]; then
# packages_to_install contains rust
log "Installing rust."
curl -sf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --profile minimal --default-toolchain 1.60.0
curl -sf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --profile minimal --default-toolchain 1.62.0
# remove rust from packages_to_install
packages_to_install=("${packages_to_install[@]/rust}")
fi
Expand Down Expand Up @@ -662,7 +662,7 @@ install_dependencies() {
if [[ "${packages_to_install[*]}" =~ "rust" ]]; then
# packages_to_install contains rust
log "Installing rust."
curl -sf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --profile minimal --default-toolchain 1.60.0
curl -sf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --profile minimal --default-toolchain 1.62.0
# remove rust from packages_to_install
packages_to_install=("${packages_to_install[@]/rust}")
fi
Expand Down Expand Up @@ -736,7 +736,7 @@ install_dependencies() {
if [[ "${packages_to_install[*]}" =~ "rust" ]]; then
# packages_to_install contains rust
log "Installing rust."
curl -sf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --profile minimal --default-toolchain 1.60.0
curl -sf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --profile minimal --default-toolchain 1.62.0
# remove rust from packages_to_install
packages_to_install=("${packages_to_install[@]/rust}")
fi
Expand Down

0 comments on commit 0bcbee6

Please sign in to comment.