diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2021-09-10 10:15:21 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-09 21:15:21 -0400 |
commit | 87052927afd505ff1c5d42075cd23a3619b29011 (patch) | |
tree | 596ba6cfef79563ee48c0fbda3588b9e77bff44c /.devcontainer | |
parent | fb35cd0ef496fee9aa65daadf542057f18d6063f (diff) |
chore: upgrade Rust to 1.55.0 (#11965)
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index b127f11f0..5438ca19e 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/rust:0-1 -# Update to Rust 1.54.0 -RUN rustup update 1.54.0 && rustup default 1.54.0 +# Update to Rust 1.55.0 +RUN rustup update 1.55.0 && rustup default 1.55.0 # Install Deno ENV DENO_INSTALL=/usr/local |