From e1fb97650236649ed858deea9a9eb7a3e44c29c1 Mon Sep 17 00:00:00 2001 From: jiaxiao zhou Date: Thu, 24 Aug 2023 22:04:10 +0000 Subject: [PATCH] chore: bump rust to 1.72 Signed-off-by: jiaxiao zhou --- Cargo.toml | 1 + Dockerfile | 2 +- rust-toolchain.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b6fd5495b..f2cc0c86b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,7 @@ members = [ "crates/containerd-shim-wasmedge", "crates/containerd-shim-wasmtime", ] +resolver = "2" [workspace.package] edition = "2021" diff --git a/Dockerfile b/Dockerfile index 378416c8d..858e3b8af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Make sure to keep RUST_VERSION in sync with the version in rust-toolchain.toml ARG BASE_IMAGE="bullseye" -ARG RUST_VERSION=1.71.1 +ARG RUST_VERSION=1.72.0 ARG XX_VERSION=1.2.1 ARG CRATE="containerd-shim-wasmtime,containerd-shim-wasmedge" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index fe153c41f..db0dcef22 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] # Make sure to this in sync with RUST_VERSION in the Dockerfile -channel="1.71.1" +channel="1.72.0" profile="default"